我想跟踪特定路径的文件更改,我已经完成了现在运行良好的代码。它正在跟踪文件创建、重命名和更改。
我的问题是,当我启动 Filesystemwatcher 时,它工作正常,但一段时间后它停止工作,即它停止触发创建、删除和更改事件。
有人可以帮我吗?
提前谢谢您。
这是我的代码 lstFolder 是我的多路径列表
this.listFileSystemWatcher = new List();
// Loop the list to process each of the folder specifications found
if (lstFolder.Count > 0)// check if path is available to watch else exit file watcher
{
foreach (CustomFolderSettings customFolder in lstFolder)
{
DirectoryInfo dir = new DirectoryInfo(customFolder.FWPath);
// Checks whether the folder is enabled and
// also the directory is a valid location
if (dir.Exists)//customFolder.FolderEnabled &&
{
customFolder.AllowedFiles = customFolder.FWExtension;// setting extension to allowed filw extension to log .
foreach (var strExt in customFolder.FWExtension.Split(','))
{
// Creates a new instance of FileSystemWatcher
//FileSystemWatcher fileSWatch = new FileSystemWatcher();
this.fileSWatch = new FileSystemWatcher();
// Sets the filter
fileSWatch.Filter = strExt;// customFolder.FolderFilter;
// Sets the folder location
fileSWatch.Path = customFolder.FWPath;
fileSWatch.InternalBufferSize = 64000;
// Sets the action to be executed
StringBuilder actionToExecute = new StringBuilder(customFolder.ExecutableFile);
// List of arguments
StringBuilder actionArguments = new StringBuilder(customFolder.ExecutableArguments);
// Subscribe to notify filters
fileSWatch.NotifyFilter = NotifyFilters.LastWrite | NotifyFilters.FileName | NotifyFilters.DirectoryName;
// Associate the events that will be triggered when a new file Created,Changed,Deleted,Renamed //
// is added to the monitored folder, using a lambda expression
fileSWatch.Created += (senderObj, fileSysArgs) => fileSWatch_Created(senderObj, fileSysArgs, actionToExecute.ToString(), customFolder.AllowedFiles);
fileSWatch.Changed += (senderObj, fileSysArgs) => fileSWatch_Changed(senderObj, fileSysArgs, actionToExecute.ToString(), customFolder.AllowedFiles);
fileSWatch.Deleted += (senderObj, fileSysArgs) => fileSWatch_Deleted(senderObj, fileSysArgs, actionToExecute.ToString(), customFolder.AllowedFiles);
fileSWatch.Renamed += (senderObj, fileSysArgs) => fileSWatch_Renamed(senderObj, fileSysArgs, actionToExecute.ToString(), customFolder.AllowedFiles);
fileSWatch.Error += (senderObj, fileSysArgs) => fileSWatch_Error(senderObj, fileSysArgs, actionToExecute.ToString(), customFolder.AllowedFiles);
// will track changes in sub-folders as well
fileSWatch.IncludeSubdirectories = customFolder.FWSubFolders;
// Begin watching
fileSWatch.EnableRaisingEvents = true;
// Add the systemWatcher to the list
listFileSystemWatcher.Add(fileSWatch);
GC.KeepAlive(fileSWatch);
GC.KeepAlive(listFileSystemWatcher);
}
}
}
}
else
{
Application.Exit();
}
请勿使用
GC.KeepAlive(fileSWatch);
GC.KeepAlive(listFileSystemWatcher);
创建一个
List<FileSystemWatcher>
并存储每个
也看看
请注意,有几个因素会影响文件系统更改事件 被提出,如下所述:
- 常见的文件系统操作可能会引发多个事件。例如,当一个文件从一个目录移动到另一个目录时,多个 可能会引发 OnChanged 以及一些 OnCreated 和 OnDeleted 事件。 移动文件是一项复杂的操作,由多个简单的操作组成 操作,因此引发多个事件。同样,一些 应用程序(例如防病毒软件)可能会导致额外的 FileSystemWatcher 检测到的文件系统事件。
- FileSystemWatcher 可以监视未切换或移除的磁盘。 FileSystemWatcher 不会引发事件 CD 和 DVD,因为时间戳和属性无法更改。偏僻的 计算机必须安装所需的平台之一 组件正常运行。
- 如果多个 FileSystemWatcher 对象在 Service Pack 1 之前的 Windows XP 或 Windows 2000 SP2 或更早版本中监视同一 UNC 路径, 那么只有一个对象会引发事件。在运行的机器上 Windows XP SP1 及更高版本、Windows 2000 SP3 或更高版本或 Windows Server 2003 年,所有 FileSystemWatcher 对象都会引发相应的事件。
请注意,当缓冲区大小超过限制时,FileSystemWatcher 可能会错过事件 被超过。为避免错过事件,请遵循以下准则:
- 通过设置InternalBufferSize属性来增加缓冲区大小。
- 避免观看具有长文件名的文件,因为长文件名会导致填充缓冲区。考虑重命名这些文件 使用较短的名称。
- 使事件处理代码尽可能短。
FileSystemWatcher.InternalBufferSize 属性
备注
可以将缓冲区设置为 4 KB 或更大,但不得超过 64 知识库。如果您尝试将 InternalBufferSize 属性设置为小于 4096 字节,您的值将被丢弃,InternalBufferSize 属性设置为 4096 字节。为了获得最佳性能,请使用多个 基于 Intel 的计算机上为 4 KB。
系统通知组件文件更改,并存储这些更改 组件创建并传递给 API 的缓冲区发生变化。每个 事件最多可以使用 16 个字节的内存,不包括文件名。 如果短时间内发生多次变化,缓冲区可能会溢出。 这会导致组件失去对目录中更改的跟踪, 并且它只会提供全面通知。
增加缓冲区的大小可以防止文件系统丢失 改变事件。然而,增加缓冲区大小的成本很高,因为 它来自无法换出到磁盘的非分页内存,因此 保持缓冲区尽可能小。为了避免缓冲区溢出,请使用 要过滤掉的 NotifyFilter 和 IncludeSubdirectories 属性 不需要的更改通知。