Skip to content

Instantly share code, notes, and snippets.

@harriyott
Last active March 30, 2018 11:34
Show Gist options
  • Save harriyott/82d2e2ca4daf036966ef99f0ee508909 to your computer and use it in GitHub Desktop.
Save harriyott/82d2e2ca4daf036966ef99f0ee508909 to your computer and use it in GitHub Desktop.
_fileSystemWatcher = new FileSystemWatcher
{
Path = @"C:\My Project\Apps\Analysis",
NotifyFilter = NotifyFilters.LastWrite,
Filter = "*.*"
};
_fileSystemWatcher.EnableRaisingEvents = true;
_fileSystemWatcher.Changed += OnDirectoryChange;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment