public void WatchFolder(String path) { Directory.CreateDirectory(path); WatchedFolder watcher = new WatchedFolder(path, this); watchList.Add(watcher); }
public void UnwatchFolder(WatchedFolder folder) { watchList.Remove(folder); }