C# 当另一个进程对文本文件进行更改时收到通知
当另一个进程对特定文本文件进行更改时,我希望在我的 C# 应用程序中收到通知。
原因是我从我的应用程序启动了一个第三方工具,以便检索有关设备的一些信息。该工具将设备的当前状态保存到 ini 文件中。这需要一些不确定的时间,但我想在状态信息可用时立即做出反应并读取它。
我该怎么做?
I would like to be notified in my C# application when another process makes changes to a particular textfile.
The reason for this is that I launch a 3rd party tool from my application in order to retrieve some information about a device. this tool saves the current state of the device into an ini file. This takes some undetermined time, but I want to react and read the state information as soon as it's available.
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 System.IO.FileSystemWatcher 类。
像这样的东西:
You could use the System.IO.FileSystemWatcher class.
Something like this:
您可以使用 System.IO.FileSystemWatcher
另外,请参阅文件更改时通知?了解更多信息。
You can monitor file changes using System.IO.FileSystemWatcher
Also, see Notification when a file changes? for more info.