我有一个项目,我在项目中添加了一个名为“Test”的数据文件并使用:
IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForApplication();
if (!isf.FileExists("Test"))
return;
imgStream = isf.OpenFile("Test", FileMode.Open, FileAccess.Read);
BinaryReader r = new BinaryReader(imgStream);
int count = r.ReadInt32();
for (int i = 0; i < count; ++i)
{
..........................
}
调试时,应用程序在项目中找不到数据文件,!isf.FileExists("Test")
返回true。为什么?