Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disabling FileSystemWatcher for specific updates?

Does anyone have any ideas how I can reliably disable a FileSystemWatcher object when my application makes changes to the files in the directory, so that I am only watching for external changes to the directory?

I've tried setting EnableRaisingEvents to false immediately before performing a write and setting it back to true immediately after, but it seems this method is not reliable, and occasionally I still get the event firing.

The only other thing I can think of is to wait a small amount of time after performing the write to let the OS finish up the modification of the directory before re-enabling the FSW, but that seems hackish and I don't like it.


To add to the problem, the directory consists of potentially many files, the identities of which are beyond my knowledge and control, so I can't just wait for the event to fire for a specific file and then ignore it. There could be any number of FSW events firing after a single modification (because of the potentially many files getting updated).

like image 253
devios1 Avatar asked May 09 '10 02:05

devios1


1 Answers

You cannot do this using the .NET API.

As multiple users pointed out, you'll probably be better off maintaining a list of changes you make and subtract them from the changeset you observe.

You can also use Win32-level API, which gives you a PID for the process making the change if I'm not mistaken (not sure about this, I've written a driver before which did this (and more) inside the kernel space).

UPDATE: I called someone on the team I worked with on this project, and they confirm we had the PID in kernel space only.

like image 57
Shachar Avatar answered Nov 18 '22 11:11

Shachar