■ IStorageItem 인터페이스의 IsOfType 메소드를 사용해 파일 여부를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 |
using Windows.Storage; StorageFolder storageFolder = await StorageFolder.GetFolderFromPathAsync(@"D:\"); IStorageItem storageItem = await storageFolder.TryGetItemAsync("sample.dat").AsTask().ConfigureAwait(false); bool isFile = storageItem.IsOfType(StorageItemTypes.File); |