.NET has a handy type called System.IO.FileSystemWatcher which you can point at a directory and it triggers events based on file events such as a file being created, deleted, renamed, or changed. The problem is that the Changed event gets triggered many times with a simple file save when usually you only want to be







