■ IsolatedStorageFile 클래스를 사용해 파일 경로 배열을 구하는 방법을 보여준다.
▶ IsolatedStorageFile 클래스 : 파일 경로 배열 구하기 예제 (C#)
1 2 3 4 5 6 7 8 9 10 |
using System.IO.IsolatedStorage; using(IsolatedStorageFile isolatedStorageFile = IsolatedStorageFile.GetUserStoreForApplication()) { string[] filePathArray1 = GetFilePathArray(isolatedStorageFile, string.Empty); // 루트 폴더에서 파일 경로 배열을 구한다. string[] filePathArray2 = GetFilePathArray(isolatedStorageFile, "test\*.*"); // test 폴더에서 파일 경로 배열을 구한다. } |
▶ IsolatedStorageFile 클래스 : 파일 경로 배열 구하기 (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 28 29 |
using System.IO.IsolatedStorage; #region 파일 경로 배열 구하기 - GetFilePathArray(isolatedStorageFile, searchPattern) /// <summary> /// 파일 경로 배열 구하기 /// </summary> /// <param name="isolatedStorageFile">IsolatedStorageFile 객체</param> /// <param name="searchPattern">검색 패턴</param> /// <returns>파일 경로 배열</returns> public string[] GetFilePathArray(IsolatedStorageFile isolatedStorageFile, string searchPattern) { string[] filePathArray; if(string.IsNullOrEmpty(searchPattern)) { filePathArray = isolatedStorageFile.GetFileNames(); } else { filePathArray = isolatedStorageFile.GetFileNames(searchPattern); } return filePathArray; } #endregion |