在FileSystemWatcher.Error
事件发生后,我不知道接下来该做什么。
例外可以是[相对]次要的例外,例如
目录
中一次发生太多变化
这不会影响观察者的观看过程,但它也可能是一个大问题 - 例如被监视的目录被删除,在这种情况下观察者不再起作用。
我的问题是处理错误事件的最佳方法是什么?
答案 0 :(得分:2)
肯定取决于错误?
答案 1 :(得分:1)
我只是得到内部异常类型,然后根据每个错误决定做什么(重启或失败)。
所以
myWatcher.Error += new ErrorEventHandler(OnError);
跟随
private static void OnError(object source, ErrorEventArgs e)
{
if (e.GetException().GetType() == typeof(InternalBufferOverflowException))
{
// This can happen if Windows is reporting many file system events quickly
// and internal buffer of the FileSystemWatcher is not large enough to handle this
// rate of events. The InternalBufferOverflowException error informs the application
// that some of the file system events are being lost.
Console.WriteLine(("The file system watcher experienced an internal buffer overflow: " + e.GetException().Message));
}
}