Is there some mechanism by which I can be notified (in C#) when a file is modified on the disc?
|
1
|
|||
|
|
|
That would be System.IO.FileSystemWatcher. |
||
|
|
|
|
Use the FileSystemWatcher. You can filter for modification events only. |
||
|
|
|
|
You can use the
|
||
|
|
|
|
See this answer for more information on the FileSystemWatcher class and the events it raises. |
||
|
|
|
|
You're sure to run into problems with FileSystemWatcher. See my blog post here for some code that addresses these problems: http://precisionsoftware.blogspot.com/2009/05/filesystemwatcher-done-right.html |
||
|
|
