日期:2014-05-16 浏览次数:21051 次
FileSystemWatcher watcher = new FileSystemWatcher(); watcher.Path = "TEST\\AAA"; watcher.IncludeSubdirectories = true; watcher.Changed += new FileSystemEventHandler(watcher_Changed); watcher.EnableRaisingEvents = true;