FileSystemWatcher stops raising events after a period of time
We have built a window service that listens to folders with FileSystemWatcher , when created we process the file and so on. But after couple of days the event stops working. Is it possible that it being collected by the garbage collector (GC)? Does the GC collect it holding class (which is a singleton)? Should I use a weak event? Do I have a bug that means the event gets unregistered? What i think the problem is, that FSW has an internal buffer, when it overflows its an error, take a look in this article that offer code to solve this problem. Hope this help anyone. Gustavo Mori A couple of