1

我在互联网上发现了这个代码来检查文件是否存在

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"); 加载这个文件)?

4

1 回答 1

0

你能检查一下这个“Setting.xml”文件在IsolatedStorage中吗?

因为,为了访问来自 IsolatedStorage 的文件 - 您应该使用 IsolatedStorageFileStream。

于 2013-05-28T20:50:06.857 回答