■ FileIO 클래스의 WriteTextAsync 정적 메소드를 사용해 텍스트 파일을 쓰는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 |
using Windows.Storage; ... StorageFolder storageFolder = ApplicationData.Current.LocalFolder; StorageFile storageFile = await storageFolder.CreateFileAsync("sample.txt", CreationCollisionOption.OpenIfExists); ... await FileIO.WriteTextAsync(storageFile, "샘플 데이터 입니다."); |