摘要: .net的System.IO 命名空间中的System.IO.FileSystemWatcher用来实现对文件系统中更改的监视 如下代码: System.IO.FileSystemWatcher watcher = new System.IO.FileSystemWatcher(); watcher.Path = @"d:\Data"; //目录 watc... 阅读全文