gpt4 book ai didi

c# - FileSystemWatcher 检测 zip 文件

转载 作者:行者123 更新时间:2023-11-30 23:33:56 25 4
gpt4 key购买 nike

我正在使用 FileSystemWatcher 类来检测目录中创建的新文件。我正在创建 txt 和 zip 文件。它可以完美地检测 txt 文件,但与 zip 文件不同。我知道是否有人使用过它以及您的经验。

这是我的代码:

public void CreateWatcher(String path)
{
//Create a new FileSystemWatcher.
FileSystemWatcher watcher = new FileSystemWatcher(path);

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

Thread.Sleep(2000);
//Set the filter to all type of files
watcher.Filter = "*.zip";

//Subscribe to the Created event.
watcher.Created += new FileSystemEventHandler(watcher_FileCreated);

//Enable the FileSystemWatcher events.
watcher.EnableRaisingEvents = true;
}

private void watcher_FileCreated(object sender, FileSystemEventArgs e)
{
logger.InfoFormat("New zip file created -> " + e.Name);
}

谢谢!

最佳答案

如果您将过滤器更改为 *.* 并将 zip 文件放到之后的目录中,它会执行任何操作吗?与 txt 文件相比,zip 文件是否非常大?您是否尝试过文件名区分大小写的 FileSystemWatcher 挑剔?

编辑:添加代码块

关于c# - FileSystemWatcher 检测 zip 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33676365/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com