I have a FileSystemWatcher that processes files based on file system events. After awhile, the process is still alive, but it no longer detects the file system events. The process watches a local network share drive.
Anything I should be watching out for?
Most likely small drops in network connectivity. Check this article.
Basically:
watcher.EnableRaisingEvents = truewatcher.ErrorThen re-bind on error.