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