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