C# get file change events

2020-04-19 07:29发布

问题:

I do have a program which logs some specific events in a text file (it keeps the file open).
Now I want to program a second application which shows these logs on a form.

can I set an event for any change in a text file which is opened by another process? or I have to read that regularly?

thanks

回答1:

Have a look at the FileSystemWatcher Class



标签: c# file-io