FileSystemWatcher和网络断开?

时间:2008-11-11 17:30:43

标签: c# .net .net-2.0 filesystemwatcher

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

1 个答案:

答案 0 :(得分:7)

您需要重新连接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 ...你希望有一个方法可以添加所有事件并设置路径,但上面的代码可以让你很好地了解该怎么做。