C#通过FileSystemWatcher监控文件添加或者删除事件
发布时间:2020-12-15 17:56:47 所属栏目:百科 来源:网络整理
导读:今天PHP站长网 52php.cn把收集自互联网的代码分享给大家,仅供参考。 using System;using System.IO;using System.Windows.Forms; class MainClass { static void Main(string[] args) { using (FileSystemWatcher watch
|
以下代码由PHP站长网 52php.cn收集自互联网 现在PHP站长网小编把它分享给大家,仅供参考 using System;
using System.IO;
using System.Windows.Forms;
class MainClass {
static void Main(string[] args) {
using (FileSystemWatcher watch = new FileSystemWatcher()) {
watch.Path = Application.StartupPath;
watch.Filter = "*.*";
watch.IncludeSubdirectories = true;
// Attach the event handler.
watch.Created += new FileSystemEventHandler(OnCreatedOrDeleted);
watch.Deleted += new FileSystemEventHandler(OnCreatedOrDeleted);
watch.EnableRaisingEvents = true;
Console.WriteLine("Press Enter to create a file.");
Console.ReadLine();
if (File.Exists("test.bin")) {
File.Delete("test.bin");
}
// Create test.bin.
using (FileStream fs = new FileStream("test.bin",FileMode.Create)) {
// Do something.
}
Console.WriteLine("Press Enter to terminate the application.");
Console.ReadLine();
}
}
private static void OnCreatedOrDeleted(object sender,FileSystemEventArgs e) {
Console.WriteLine("tNOTIFICATION: " + e.FullPath + "' was " + e.ChangeType.ToString());
Console.WriteLine();
}
}
以上内容由PHP站长网【52php.cn】收集整理供大家参考研究 如果以上内容对您有帮助,欢迎收藏、点赞、推荐、分享。 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
