プロジェクトがあり、「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 を返します。なんで?