文件夹上的 Filesystemwatcher 并获取文件名
Posted
技术标签:
【中文标题】文件夹上的 Filesystemwatcher 并获取文件名【英文标题】:Filesystemwatcher on a folder and getting the filename 【发布时间】:2014-07-05 12:31:08 【问题描述】:我正在使用FileSystemWatcher
监控多个文件夹。
当它触发更改事件时,我想获取更改文件的文件名。
由于当我尝试使用 e.Name 或 e.FullPath 时观察者正在监视文件夹,所以我得到了文件夹路径。
有没有办法获取文件名?
代码: 它是一组观察者。
watchers[_Idx] = new FileSystemWatcher();
watchers[_Idx].Path = row.Cells[0].Value.ToString();
watchers[_Idx].IncludeSubdirectories = true;
watchers[_Idx].NotifyFilter = NotifyFilters.LastWrite |
NotifyFilters.DirectoryName | NotifyFilters.FileName |
NotifyFilters.Size;
watchers[_Idx].Changed += new FileSystemEventHandler(SyncThread);
watchers[_Idx].Created += new FileSystemEventHandler(SyncThread);
watchers[_Idx].Renamed +=new RenamedEventHandler(SyncThread);
watchers[_Idx].EnableRaisingEvents = true;
【问题讨论】:
请显示初始化 FileSystemWatcher 及其属性的代码 如果您不想了解目录更改,请删除 NotifyFilters.DirectoryName 【参考方案1】:您可以从事件中提取文件名:
// Define the event handlers.
private static void OnChanged(object source, FileSystemEventArgs e)
// Specify what is done when a file is changed, created, or deleted.
Console.WriteLine("File: " + e.FullPath + " " + e.ChangeType);
private static void OnRenamed(object source, RenamedEventArgs e)
// Specify what is done when a file is renamed.
Console.WriteLine("File: 0 renamed to 1", e.OldFullPath, e.FullPath);
代码 sn-p 取自 here。
【讨论】:
我之前尝试过,但一直在获取文件夹名称。事实证明,它首先给出了所有涉及的文件夹和子文件夹的事件,然后转到文件。谢谢以上是关于文件夹上的 Filesystemwatcher 并获取文件名的主要内容,如果未能解决你的问题,请参考以下文章