■ 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 filePath = @"test\sample.txt"; if(isolatedStorageFile.FileExists(filePath)) { DeleteFile(isolatedStorageFile, filePath); // test 폴더에서 sample.txt를 삭제한다. } } |
▶ IsolatedStorageFile 클래스 : 파일 삭제하기 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
using System.IO.IsolatedStorage; #region 파일 삭제하기 - DeleteFile(isolatedStorageFile, filePath) /// <summary> /// 파일 삭제하기 /// </summary> /// <param name="isolatedStorageFile">IsolatedStorageFile 객체</param> /// <param name="filePath">파일 경로</param> public void DeleteFile(IsolatedStorageFile isolatedStorageFile, string filePath) { isolatedStorageFile.DeleteFile(filePath); } #endregion |