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