Free mag vol1 | Page 833

CHAPTER 20  FILE I/O AND OBJECT SERIALIZATION // Establish the path to the directory to watch. FileSystemWatcher watcher = new FileSystemWatcher(); try { watcher.Path = @"C:\MyFolder"; } catch(ArgumentException ex) { Console.WriteLine(ex.Message); return; } // Set up the things to be on the lookout for. watcher.NotifyFilter = NotifyFilters.LastAccess | NotifyFilters.LastWrite | NotifyFilters.FileName | NotifyFilters.DirectoryName; // Only