C#教程

关注公众号 jb51net

关闭
首页 > 软件编程 > C#教程 > C# FileSystemWatcher监控

C#中FileSystemWatcher类实现监控文件夹

作者:伴之则安博客

在C#中,如果你想要监控一个文件夹内文件的变动情况,比如文件的创建、删除、修改等,你可以使用FileSystemWatcher类,下面就来介绍一下FileSystemWatcher监控的使用,感兴趣的可以了解一下

在C#中,如果你想要监控一个文件夹内文件的变动情况,比如文件的创建、删除、修改等,你可以使用FileSystemWatcher类。FileSystemWatcher类提供了简单的方式来监视文件系统的更改。它位于System.IO命名空间中,并允许你指定要监视的目录以及你感兴趣的事件类型。

一、FileSystemWatcher类简介

FileSystemWatcher类提供了一个异步机制来监视文件系统的更改。你可以通过它注册事件处理器来响应文件或目录的更改,如:

二、使用FileSystemWatcher类

要使用FileSystemWatcher类,你需要:

三、示例代码

下面是一个简单的示例,展示了如何使用FileSystemWatcher类来监控一个文件夹中文件的变动情况:

using System;
using System.IO;

class Program
{
    static void Main()
    {
        // 创建FileSystemWatcher实例
        FileSystemWatcher watcher = new FileSystemWatcher();

        // 设置要监视的目录
        watcher.Path = @"C:\YourFolderToWatch";

        // 过滤条件,例如只监控.txt文件
        watcher.Filter = "*.txt";

        // 通知过滤器,设置需要监控的事件类型
        watcher.NotifyFilter = NotifyFilters.FileName | NotifyFilters.LastWrite;

        // 注册事件处理器
        watcher.Created += OnFileCreated;
        watcher.Deleted += OnFileDeleted;
        watcher.Changed += OnFileChanged;
        watcher.Renamed += OnFileRenamed;

        // 开始监控
        watcher.EnableRaisingEvents = true;

        // 保持控制台开启,以便接收事件
        Console.WriteLine("Press 'Enter' to quit the sample.");
        Console.ReadLine();

        // 停止监控
        watcher.EnableRaisingEvents = false;
    }

    // 当文件被创建时触发
    private static void OnFileCreated(object source, FileSystemEventArgs e)
    {
        Console.WriteLine($"File: {e.FullPath} has been created.");
    }

    // 当文件被删除时触发
    private static void OnFileDeleted(object source, FileSystemEventArgs e)
    {
        Console.WriteLine($"File: {e.FullPath} has been deleted.");
    }

    // 当文件被修改时触发
    private static void OnFileChanged(object source, FileSystemEventArgs e)
    {
        Console.WriteLine($"File: {e.FullPath} has been changed.");
    }

    // 当文件被重命名时触发
    private static void OnFileRenamed(object source, RenamedEventArgs e)
    {
        Console.WriteLine($"File: {e.OldFullPath} has been renamed to {e.FullPath}.");
    }
}

在这个例子中,FileSystemWatcher实例被设置为监视C:\YourFolderToWatch目录下所有.txt文件的创建、删除、修改和重命名事件。每当这些事件发生时,相应的事件处理器就会被调用,并在控制台输出相应的消息。

四、注意事项

五、总结

FileSystemWatcher类是一个强大且易用的工具,用于在C#中监控文件夹中的文件变动。通过合理地使用它,你可以实现自动备份、日志记录、实时同步等功能。在使用时,请确保处理好事件,并考虑到性能和资源使用的因素。

到此这篇关于C#中FileSystemWatcher类实现监控文件夹的文章就介绍到这了,更多相关C# FileSystemWatcher监控 内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文