■ StorageFile 클래스의 OpenReadAsync 메소드를 사용해 IRandomAccessStream 객체를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 |
using Windows.Storage; using Windows.Storage.Streams; StorageFolder storageFolder = await StorageFolder.GetFolderFromPathAsync(@"D:\"); StorageFile storageFile = await storageFolder.GetFileAsync("sample.dat"); using IRandomAccessStream randomAccessStream = await storageFile.OpenReadAsync(); |