I need to copy the file (OutboxLog.txt produced by Fax service) right after it was updated. I'm using:
System.IO.File.Copy(strSource, strDestination, True) to do that, but if the source file is busy (was not closed yet after update) the copy process fails.
How can I find if the file is still busy?
Thank you
Vlad