ストレージにファイルがありますが、ファイルの名前がUnicodeであるため、確認できません。そのため、FileExist関数はfalseで返されますが、ファイルは存在します。リストすると、ファイル名が表示されるためです。ファイル名はハンガリー語です。
IsolatedStorageFile fileStorage = IsolatedStorageFile.GetUserStoreForApplication();
// List files
List<String> fileList = new List<String>(fileStorage.GetFileNames("Informations/*"));
(string file in fileList)
{
MessageBox.Show("file: " + file);
// Will appear: "file: Felhasználási Feltételek.html"
}
// Check file: return false
if (fileStorage.FileExists("Informations/Felhasználási Feltételek.html"))
{
}
解決策は何ですか?ありがとう