■ StorageFile 클래스의 GetFileFromPathAsync 정적 메소드를 사용해 특정 파일 경로의 StorageFile 객체를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 |
using System; using Windows.Storage; StorageFile storageFile = await StorageFile.GetFileFromPathAsync("d:\\sample.txt"); |