我有一个FileSystemWatcher
我想OnCreated event
为复制到监视目录中的每个文件夹触发一个。将手动将多个文件夹一次复制到此监视目录中。
目前它只为event
复制的第一个文件夹触发。
因此,如果我正在查看文件夹 X 并在 Windows 资源管理器中选择文件夹 A、B、C 并将它们复制到 X 中,OnCreated
则会为 A 而不是 B 或 C 触发。
这是我用来设置的代码FileSystemWatcher
:
watcher = new System.IO.FileSystemWatcher(watchPath);
watcher.InternalBufferSize = 32768;
watcher.IncludeSubdirectories = true;
watcher.NotifyFilter = NotifyFilters.FileName | NotifyFilters.DirectoryName |
NotifyFilters.CreationTime | NotifyFilters.LastWrite;
watcher.Changed += new FileSystemEventHandler(OnChanged);
watcher.Created += new FileSystemEventHandler(OnCreated);
watcher.EnableRaisingEvents = true;
这是我的OnCeated
方法
void OnCeated(object sender, FileSystemEventArgs e)
{
XDocument xmlDoc = BeginImport(e.FullPath);
}
知道为什么这只会触发复制到监视目录中的第一个文件夹的事件吗?