0

我必须关注其中一个文件夹的更改。

class FileWatcher
{
    FileSystemWatcher watcher = new FileSystemWatcher();

    [PermissionSet(SecurityAction.Demand, Name = "FullTrust")]
    public void StartWatching()
    {
        watcher.Path = AppDomain.CurrentDomain.BaseDirectory + "\\Read test data";

        watcher.NotifyFilter = NotifyFilters.LastAccess | NotifyFilters.LastWrite
           | NotifyFilters.FileName | NotifyFilters.DirectoryName;            

        watcher.Changed += new FileSystemEventHandler(OnChanged);

        watcher.EnableRaisingEvents = true;
     }

    private static void OnChanged(object source, FileSystemEventArgs e)
    {
        Console.WriteLine("Changes in folder: 'Read test data' ");           
    }
}

和初始化:

private FileWatcher watch = new FileWatcher();

    private void StartReadCVSChanges_Click(object sender, EventArgs e)
    {    
        watch.StartWatching();
    }  

出于某种原因,当我确实进行了一些更改时,事件处理程序被调用了 3 次:

在此处输入图像描述

我更喜欢它是一次。

有任何想法吗?

4

1 回答 1

0

从那里看到这个链接 文本。

您可能会注意到在某些情况下,单个创建事件会生成多个由您的组件处理的 Created 事件。例如,如果您使用 FileSystemWatcher 组件监视目录中新文件的创建,然后使用记事本创建文件进行测试,即使只创建了一个文件,您也可能会看到生成了两个 Created 事件。这是因为记事本在写入过程中执行了多个文件系统操作。记事本分批写入磁盘,创建文件内容,然后创建文件属性。其他应用程序可能以相同的方式执行。因为 FileSystemWatcher 监视操作系统活动,这些应用程序触发的所有事件都将被拾取

于 2014-11-14T09:56:23.273 回答