■ IRandomAccessStream 인터페이스의 GetInputStreamAt 메소드를 사용해 IInputStream 객체를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 |
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(); IInputStream inputStream = randomAccessStream.GetInputStreamAt(0); |