Hi,

I'm monitoring a directory to see if there are any changes in its content. If a certain file in this directory is being changed, or overriden, I want to be able to read its content before it have been changed with the new content.

Naturally, I tried using FileSystemWatcher class, but it allerts me that the file changed after it have changed, and the old content is already gone.

Can someone point me to a solution, proferrably another C# class which provide the functionality I'm looking for?

Thanks