创建文件后打开文件时出现错误
using (var myFileStore = IsolatedStorageFile.GetUserStoreForApplication())
{
myFileStore.CreateFile(DateTime.Now.Ticks + ".txt");
}
using (var myFileStore = IsolatedStorageFile.GetUserStoreForApplication())
{
temp = myFileStore.GetFileNames();
for (int k = 0; k < temp.Length; k++)
{
IsolatedStorageFileStream file1 = myFileStore.OpenFile(temp[k], FileMode.Open, FileAccess.Read);
dataSource.Add(new SampleData() { Name = temp[k], Size = Convert.ToString(Math.Round(Convert.ToDouble(file1.Length) / 1024 / 1024, 1) + " MB") });
}
}
最佳答案
这是因为您没有关闭 CreateFile
方法返回的流!
您的代码应如下所示:
using (var myFileStore = IsolatedStorageFile.GetUserStoreForApplication())
{
myFileStore.CreateFile(DateTime.Now.Ticks + ".txt").Dispose();
}
或者
using (var myFileStore = IsolatedStorageFile.GetUserStoreForApplication())
{
using(myFileStore.CreateFile(DateTime.Now.Ticks + ".txt"))
{
}
}
在下面的 OpenFile 中也是如此。
底线你应该 总是 处理你的流(通过使用
using
子句或 Dispose()
方法)关于windows-phone-7 - 不允许对 IndependentStorageFileStream 进行操作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12584813/