取消连接事件不适用于 FileSystemWatcher

发布于 2024-11-29 20:43:52 字数 636 浏览 1 评论 0原文

我有一个使用 FileSystemWatcher 来监视文件夹中文件更改的应用程序。问题是,当它捕获这些事件时,它需要对这些文档进行更改(更新链接),这当然会再次触发事件,使应用程序陷入循环。

所以我尝试了这个:

    UnWireEvents(); //Turn off the events while updating the documents
            ChangeAllLinks();
            WireEvents(); //Turn the events back on 

   private void WireEvents()
            {
                _monitor.FileChanged += new EventHandler(_monitor_FileChanged);
            }

            private void UnWireEvents()
            {
                _monitor.FileChanged -= new EventHandler(_monitor_FileChanged);
            }

但它似乎不起作用,应用程序仍然进入循环。那么为什么它不起作用,我需要做什么呢?

I have an application that is using FileSystemWatcher to monitor a folder for changes to files. The problem is that when it catches these events, it needs to do changes to those documents (updating links), and this of course triggers the events again, throwing the application into a loop.

So I tried this:

    UnWireEvents(); //Turn off the events while updating the documents
            ChangeAllLinks();
            WireEvents(); //Turn the events back on 

   private void WireEvents()
            {
                _monitor.FileChanged += new EventHandler(_monitor_FileChanged);
            }

            private void UnWireEvents()
            {
                _monitor.FileChanged -= new EventHandler(_monitor_FileChanged);
            }

But it doesn't seem to work, the application still goes into a loop. So why doesn't it work, and what do I need to do instead?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

ヤ经典坏疍 2024-12-06 20:43:52

您可以设置,而不是取消事件处理程序
将 FileSystemWatcher 类的 EnableRaisingEvents 属性设置为 false
禁用所有创建/重命名/删除/更改事件。
更改链接后,只需启用 FileSystemWatcher
通过将 EnableRaisingEvents 设置为 true。

Instead of unhooking your event handler you could set
the EnableRaisingEvents property of the FileSystemWatcher class to false
disabling all Create/Rename/Delete/Change events.
After you have changed your links simply enable the FileSystemWatcher
by setting EnableRaisingEvents to true.

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