I\'m monitoring a folder using a FileSystemWatcher like this:
watcher = new FileSystemWatcher(folder); watcher.NotifyFilter = NotifyFilters.Size; watcher.Cha
You have to call FileStream Flush() method to write file changes.