■ FileIO 클래스의 ReadLinesAsync 정적 메소드를 사용해 특정 텍스트 파일의 내용을 읽는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 |
using System; using System.Collections.Generic; using Windows.Storage; StorageFile storageFile = await StorageFile.GetFileFromApplicationUriAsync(new Uri("ms-appx:///DATA/Contacts.txt")); IList<string> lineList = await FileIO.ReadLinesAsync(storageFile); |