■ IsolatedStorageFile 클래스를 사용해 격리된 저장소와 그 안에 있는 디렉토리와 파일을 영구 제거하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 |
using System.IO.IsolatedStorage; using(IsolatedStorageFile isolatedStorageFile = IsolatedStorageFile.GetUserStoreForApplication()) { isolatedStorageFile.Remove(); } |