in reply to File Saving

Even if files are locked against reading you should be able to access them if you are on a recent version of Windows that supports the volume shadow copy service. You will have to create a volume shadow copy and read the file from there.

In any case, if the application has the file open at the time there is no guarantee that the data on disk will be in a consistent state. If you know the application that has the file open (e.g. Word, Excel, etc.) it may be better to take control of the application to save a copy. For this you would need to use the COM interface of the application. There are modules to support some of the more common applications or you can use COM directly, if necessary.

Replies are listed 'Best First'.
Re^2: File Saving
by signalb (Initiate) on Nov 08, 2008 at 18:42 UTC
    Again, Thank you, I appreciate the advice. I thought of using COM, however if an application freezes and isn't responding then not sure if COM is the answer. I may still give it a try anyway.