0
StorageFolder InstallationFolder = Windows.ApplicationModel.Package.Current.InstalledLocation;
StorageFile file = await InstallationFolder.CreateFileAsync("MyDocument.Txt", CreationCollisionOption.ReplaceExisting);
await FileIO.WriteTextAsync(file, "Hello");

错误是:

mscorlib.dll 中出现“System.UnauthorizedAccessException”类型的异常,但未在用户代码中处理

附加信息:访问被拒绝。(来自 HRESULT 的异常:0x80070005 (E_ACCESSDENIED))

如果有这个异常的处理程序,程序可以安全地继续。

4

1 回答 1

1

您可以在http://msdn.microsoft.com/en-us/library/windows/apps/hh967755.aspx上的 MSDN 文档中阅读:

应用程序的安装目录是只读位置。

于 2012-10-08T13:43:58.230 回答