为什么文件系统观察者几乎是盲目的?

发布于 2024-08-17 08:16:58 字数 161 浏览 2 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半透明的墙 2024-08-24 08:16:58

您需要给它一个更大的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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文