如何检查IsolatedStorageFile是否存在?

发布于 2024-10-10 14:11:04 字数 577 浏览 2 评论 0原文

我们有这样的代码:

try  
{   
   streamOptions = new IsolatedStorageFileStream(  “FileName”,  
                                                    FileMode.Open,  
                                                    FileAccess.Read);  
}  
catch ( FileNotFoundException )  
{  
   this.userSettings = new UserSettings();  
   load = false;  
}

这使得 Visual Studio 在我调试时经常闯入调试器,因此我希望用“if”来保护上面的代码,因此它仅在isolatedStorageFile存在时运行。然而,尚不清楚如何使用IsolatedStorageFile.FileExists()来检查IsolatedStorageFileStream即将打开的文件,例如,当我“新建”IsolatedStorageFile对象时,我必须提供哪些选项。

We have code like:

try  
{   
   streamOptions = new IsolatedStorageFileStream(  “FileName”,  
                                                    FileMode.Open,  
                                                    FileAccess.Read);  
}  
catch ( FileNotFoundException )  
{  
   this.userSettings = new UserSettings();  
   load = false;  
}

This make Visual Studio break into the debugger often when I am debugging, therefore I wish to protect the above code with a “if”, so it only runs when the IsolatedStorageFile exists. However it is not clear how to use IsolatedStorageFile.FileExists() to check for the file that IsolatedStorageFileStream is about to open, e.g. what options do I have to give when I "new" a IsolatedStorageFile object.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

红焚 2024-10-17 14:11:04

您可以使用 FileExists 方法IsolatedStorageFile 类。

You could use the FileExists method on the IsolatedStorageFile class.

嘴硬脾气大 2024-10-17 14:11:04
private bool IsolatedStorageFileExists(string name)
{
  using (var folder = IsolatedStorageFile.GetUserStoreForDomain())
  {
    return folder.FileExists(name);
  }
}
private bool IsolatedStorageFileExists(string name)
{
  using (var folder = IsolatedStorageFile.GetUserStoreForDomain())
  {
    return folder.FileExists(name);
  }
}
墟烟 2024-10-17 14:11:04
using (var store = IsolatedStorageFile.GetUserStoreForApplication())
            {
                if (store.FileExists(your_file_name)) { do something if file exist }
                    else { do something if file not exist}
            }
using (var store = IsolatedStorageFile.GetUserStoreForApplication())
            {
                if (store.FileExists(your_file_name)) { do something if file exist }
                    else { do something if file not exist}
            }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文