■ IsolatedStorageFile 클래스를 사용해 디렉토리를 생성하는 방법을 보여준다.
▶ IsolatedStorageFile 클래스 : 디렉토리 생성하기 예제 (C#)
1 2 3 4 5 6 7 8 9 10 |
using System.IO.IsolatedStorage; using(IsolatedStorageFile isolatedStorageFile = IsolatedStorageFile.GetUserStoreForApplication()) { CreateDirectory(isolatedStorageFile, "test"); // test 디렉토리를 생성한다. CreateDirectory(isolatedStorageFile, @"test\sample"); // test 디렉토리에서 sample 디렉토리를 생성한다. } |
▶ IsolatedStorageFile 클래스 : 디렉토리 생성하기 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
using System.IO.IsolatedStorage; #region 디렉토리 생성하기 - CreateDirectory(isolatedStorageFile, directoryPath) /// <summary> /// 디렉토리 생성하기 /// </summary> /// <param name="isolatedStorageFile">IsolatedStorageFile 객체</param> /// <param name="folderPath">디렉토리 경로</param> public void CreateFolder(IsolatedStorageFile isolatedStorageFile, string directoryPath) { isolatedStorageFile.CreateDirectory(directoryPath); } #endregion |