我在互联网上发现了这个代码来检查文件是否存在
using (var store = IsolatedStorageFile.GetUserStoreForApplication())
{
if (store.FileExists("Setting.xml"))
{
MessageBox.Show("have file");
}
else
{
MessageBox.Show("haven't file");
}
}
当我尝试时,它只显示条件“尚未归档”。是否有 Setting.xml 文件?(我可以通过 XDocument data = XDocument.Load("Setting.xml"); 加载这个文件)?