6

次のコードを使用して、分離ストレージにファイルを作成しようとしています。

IsolatedStorageFile storageFile = IsolatedStorageFile.GetUserStoreForApplication();
storageFile.CreateFile("Html\\index.html");

しかし、同じことをしているときに例外が発生しています..と言っています。

System.IO.IsolatedStorage.IsolatedStorageException: IsolatedStorageFileStream での操作は許可されていません

この操作以外の操作はありません。

4

2 に答える 2

3

おそらくHtml最初にディレクトリを作成する必要があります。IsolatedStorageFile.CreateDirectory()は、ディレクトリが既に存在する場合に成功するため、次のことができます。

IsolatedStorageFile storageFile = IsolatedStorageFile.GetUserStoreForApplication();
storageFile.CreateDirectory("Html");
storageFile.CreateFile("Html\\index.html");
于 2012-12-12T15:23:06.887 に答える