gpt4 book ai didi

exception - Windows 手机 7 : FileStream exception

转载 作者:行者123 更新时间:2023-12-03 06:49:39 27 4
gpt4 key购买 nike

我尝试使用 FileStream(使用命名空间 System.IO),但出现异常:

Attempt to access the method failed 

这是代码:

FileStream fs = new FileStream("file.txt", FileMode.Create); 

我在 microsoft.com 上搜索,发现此错误是因为我使用了错误的库引用。

但在我的项目中,我使用文件夹中的 mscorlib.dll 进行编译:C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\Silverlight\v4.0

请给我一些帮助。

最佳答案

您将需要使用IsolatedStorage ,例如:

放置在文件顶部:

using System.IO.IsolatedStorage;

然后在你的方法中执行以下操作:

using (var store = IsolatedStorageFile.GetUserStoreForApplication())
{
using (var istream = new IsolatedStorageFileStream("File.txt", FileMode.OpenOrCreate, store))
{
using (var sw = new StreamWriter(istream))
{
sw.Write("Some Stuff");
}
}
}

可以在这里找到此操作和其他操作的一个很好的示例和解释:http://msdn.microsoft.com/en-us/library/cc265154(v=VS.95).aspx#Y300

您可以使用Windows Phone 7 IsolatedStorageExplorer查看您的IsolatedStorage

文档的好起点:http://msdn.microsoft.com/library/ff626516(v=VS.92).aspx

也在这里:http://create.msdn.com/en-us/education/documentation

关于exception - Windows 手机 7 : FileStream exception,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5234035/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com