■ StorageFile 클래스의 GetFileFromPathAsync 정적 메소드를 사용해 UNPACKAGED 모드에서 Assets 폴더의 컨텐트 이미지 파일을 읽는 방법을 보여준다.
▶ StorageFile 클래스 : GetFileFromPathAsync 정적 메소드를 사용해 UNPACKAGED 모드에서 Assets 폴더 컨텐트 이미지 파일 읽기 예제 (C#)
1 2 3 4 5 |
using Windows.Storage; StorageFile storageFile = await GetContentImageStorageFile("Assets\\Owl.jpg"); |
▶ StorageFile 클래스 : GetFileFromPathAsync 정적 메소드를 사용해 UNPACKAGED 모드에서 Assets 폴더 컨텐트 이미지 파일 읽기 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
using System; using System.IO; using System.Threading.Tasks; using Windows.Storage; #region 컨텐트 이미지 저장소 파일 구하기 - GetContentImageStorageFile(relativeFilePath) /// <summary> /// 컨텐트 이미지 저장소 파일 구하기 /// </summary> /// <param name="relativeFilePath">상대적 파일 경로</param> /// <returns>컨텐트 이미지 저장소 파일 태스크</returns> private async Task<StorageFile> GetContentImageStorageFile(string relativeFilePath) { string applicationDirectoryPath = Path.GetDirectoryName(AppContext.BaseDirectory); string flePath = Path.Combine(applicationDirectoryPath, relativeFilePath); StorageFile storageFile = await StorageFile.GetFileFromPathAsync(flePath); return storageFile; } #endregion |