If I'm reading a text file in shared access mode and another process truncates it, what is the easiest way to detect that? (I'm excluding the obvious choice of refreshing a FileInfo object periodically to check its size) Is there some convenient way to capture an event? (Filewatcher?)
|
|
There is, It's called FileSystemWatcher. If you are developing a windows forms application, you can drag-and-drop it from the toolbox. Here's some usage example:
It's in System.IO and System.dll so you should be able to use it in most type of projects. |
||||||||
|
|
|
FSW cannot work reliably, it is asynchronous. Assuming you don't get an exception, StreamReader.ReadLine() will return null when the file got truncated. Then check if the size changed. Beware of the unavoidable race condition, you'll need to verify assumptions about timing. |
||||
|
|
|
Just something to chew on; it may not apply to your situation: chakrit's solution is correct for what you asked for, but I have to ask -- why are you reading a file while another process truncates it? In particular, if you don't have some synchronization, reading/writing files concurrently is not particularly safe, and you may find you have other mysterious problems. |
||
|
