C# 当另一个进程对文本文件进行更改时收到通知

发布于 2024-12-27 04:59:06 字数 163 浏览 1 评论 0原文

当另一个进程对特定文本文件进行更改时,我希望在我的 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 技术交流群。

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

发布评论

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

评论(2

柒夜笙歌凉 2025-01-03 04:59:06

您可以使用 System.IO.FileSystemWatcher 类。
像这样的东西:

string fileToWatch = @"C:\MyFile.txt";
fileSystemWatcher = new FileSystemWatcher(fileToWatch);

void fileSystemWatcher_Changed(object sender, FileSystemEventArgs e)
{
    Debug.WriteLine(e.Name +  " has changed");
}

You could use the System.IO.FileSystemWatcher class.
Something like this:

string fileToWatch = @"C:\MyFile.txt";
fileSystemWatcher = new FileSystemWatcher(fileToWatch);

void fileSystemWatcher_Changed(object sender, FileSystemEventArgs e)
{
    Debug.WriteLine(e.Name +  " has changed");
}
不交电费瞎发啥光 2025-01-03 04:59:06

您可以使用 System.IO.FileSystemWatcher

另外,请参阅文件更改时通知?了解更多信息。

You can monitor file changes using System.IO.FileSystemWatcher

Also, see Notification when a file changes? for more info.

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