文件系统观察器问题

发布于 2024-11-02 15:50:53 字数 267 浏览 0 评论 0原文

我有一个 Windows 服务,它有一个 FileSystemWatcher ,它监视日志文件夹中的 txtfiles 更改。

每次将日志行写入 txtfile 时,它​​都会触发 onChanged 事件,我开始读取该文件并检索该行,然后以某种方式处理它,问题是:

事件不会被触发,除非:

-i 使用 Windows 资源管理器打开文件夹 -我继续按刷新(f5),

如果我不这样做,事件就不会被触发!

I have a windows service which has a FileSystemWatcher which watch a log folder for txtfiles changes.

it fires onChanged Event every time a logline gets written to a txtfile , i start reading for that file and i retrieve that line and then process it some way, the problem is :

the events doesnt get fired unless :

-i open the folder with windows explorer
-i keep pressing refresh (f5)

if i dont do that the events doesnt get fired !

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

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

发布评论

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

评论(1

在巴黎塔顶看东京樱花 2024-11-09 15:50:53

有时,当文件的内部缓冲区未刷新时,可能会发生这种情况。写入后尝试刷新流。

Sometimes this might happen when the internal buffer of the file is not flushed. Try flushing the stream after you write to it.

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