当前位置:  开发笔记 > 编程语言 > 正文

FileSystemWatcher和网络断开?

如何解决《FileSystemWatcher和网络断开?》经验,为你挑选了1个好方法。

如何让它在网络中运行?它工作然后它没有理由停止工作(可能因为网络不完美).



1> Patrick Desj..:

您需要重新连接FileSystemWatcher.

将类型为FileSystemWatcher的变量全局化为您的类,添加事件WatcherError.

在方法内部,添加类似的东西:

  private static void WatcherError(object source, ErrorEventArgs e)
  {
     watcher = new FileSystemWatcher();//You might want to do a method and to setup all config...
     while (!watcher.EnableRaisingEvents)
     {
        try
        {
           watcher = new FileSystemWatcher();//You might want to do a method and to setup all config...
        }
        catch
        {
           System.Threading.Thread.Sleep(30000); //Wait for retry 30 sec.
        }
     }
  }

你不想使用watcher = new ...你希望有一个方法可以添加所有事件并设置路径,但上面的代码可以让你很好地了解该怎么做.

推荐阅读
wurtjq
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有