C#监控指定目录的文件变化
2018-07-20 来源:open-open
要检查的变化,即从目录中删除目录或文件或文件夹、或者添加到一个新的文件或文件夹到一个目录下,我们必须使用FileSystemWatcher类。这个类允许我们通过程序来监控目录的变化。
创建一个新的FileSystemWatcher对象,Path属性指定的目录,并注册创建和删除事件。
并打开EnableRaisingEvents属性设置为true。
创建一个新的FileSystemWatcher对象,Path属性指定的目录,并注册创建和删除事件。
并打开EnableRaisingEvents属性设置为true。
FileSystemWatcher watcher = new FileSystemWatcher(); watcher.Path = @"c:\mydir"; // Register for events watcher.Created += new FileSystemEventHandler(watcher_Changed); watcher.Deleted += new FileSystemEventHandler(watcher_Changed); // Start Watching watcher.EnableRaisingEvents = true; // Event Handler static void watcher_Changed(object sender,FileSystemEventArgs e) { Console.WriteLine("Directory changed({0}): {1}", e.ChangeType, e.FullPath); }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。
下一篇:C#字符串相似度比较
最新资讯
热门推荐