为什么文件系统观察者几乎是盲目的?
我正在使用 FileSystemWatcher 来重命名监视目录中的文件。
如果同时复制到监视目录的文件数量超过 50 个,就会出现问题...
前 50 个文件的重命名事件已成功触发,但此后什么也没有发生。
请问有什么建议吗?
I am using FileSystemWatcher in order renaming files within a Watched directory.
The problem occurs if the number of files copied simultaneously to the watched directory exceeds the number of 50...
The rename event is fired successfully for the first 50 files, but after that nothing happens
Any suggestions please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要给它一个更大的InternalBufferSize。并快速响应变化的事件。最好对它们进行排队,然后在另一个线程中处理通知。这还可以帮助您处理不可避免的锁定文件问题。
You'll need to give it a bigger InternalBufferSize. And repond quickly to change events. Queuing them, then processing the notification in another thread is best. That also helps you deal with the inevitable locked file problems.