■ FileIO 클래스의 WriteBytesAsync 정적 메소드를 사용해 이진 파일에 바이트 배열을 쓰는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 |
using Windows.Storage; StorageFolder storageFolder = await StorageFolder.GetFolderFromPathAsync(@"D:\"); StorageFile storageFile = await storageFolder.CreateFileAsync("sample.dat", CreationCollisionOption.ReplaceExisting); byte[] contentByteArray = BitConverter.GetBytes(1000L); await FileIO.WriteBytesAsync(storageFile, contentByteArray); |