■ IsolatedStorageFile 클래스를 사용해 파일을 생성하는 방법을 보여준다.
▶ IsolatedStorageFile 클래스 : 파일 생성하기 예제 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
using System.IO.IsolatedStorage; using(IsolatedStorageFile isolatedStorageFile = IsolatedStorageFile.GetUserStoreForApplication()) { // sample.txt 파일을 생성한다. IsolatedStorageFileStream isolatedStorageFileStream1 = CreateFile(isolatedStorageFile, "sample.txt"); // test 폴더에서 sample.txt 파일을 생성한다. IsolatedStorageFileStream isolatedStorageFileStream2 = CreateFile(isolatedStorageFile, @"test\sample.txt")); ... isolatedStorageFileStream1.Close(); isolatedStorageFileStream2.Close(); } |
▶ IsolatedStorageFile 클래스 : 파일 생성하기 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
using System.IO.IsolatedStorage; #region 파일 생성하기 - CreateFile(isolatedStorageFile, filePath) /// <summary> /// 파일 생성하기 /// </summary> /// <param name="isolatedStorageFile">IsolatedStorageFile 객체</param> /// <param name="filePath">파일 경로</param> /// <returns>IsolatedStorageFileStream 객체</returns> public IsolatedStorageFileStream CreateFile(IsolatedStorageFile isolatedStorageFile, string filePath) { IsolatedStorageFileStream rootIsolatedStorageFileStream = isolatedStorageFile.CreateFile(filePath); return rootIsolatedStorageFileStream; } #endregion |