gregulator
Senior member
I have a piece of software that writes to a file when it is done it's own process and I want to know when it is done from my own program. I initially opened the file from a thread and checked if the writing was there but as you can imagine there is a problem when both programs try to access the file. I am now thinking to maybe look at the file write time or size attributes from system.io.fileinfo. Anyone know if I will have any issues with contention this way? Thanks!