■ UTF8Encoding 클래스를 사용해 UTF-8(BOM) 인코딩 방식으로 파일을 생성하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 |
using System.IO; using System.Text; string targetFilePath = @"d:\test.txt"; string content = "테스트 문자열 입니다."; File.WriteAllText(targetFilePath, content, new UTF8Encoding(true)); // UTF-8(BOM), false인 경우 UTF-8 방식으로 인코딩한다. |