Пример #1
0
 public DossierWatcher(ApplicationSettings applicationSettings)
 {
     FileSystemWatcher watcher = new FileSystemWatcher();
     watcher.Path = applicationSettings.WorldOfTanksDossierFolder;
     watcher.Filter = "*.dat";
     watcher.Changed += Changed;
     watcher.EnableRaisingEvents = true;
 }
Пример #2
0
 public BattleResultsWatcher(ApplicationSettings applicationSettings)
 {
     FileSystemWatcher watcher = new FileSystemWatcher();
     watcher.Path = applicationSettings.WorldOfTanksBattleResultsFolder;
     watcher.IncludeSubdirectories = true;
     watcher.Filter = "*.dat";
     watcher.Changed += Changed;
     watcher.EnableRaisingEvents = true;
 }