Is it possible to copy a file which is being using by another process at the same time?
I ask because when i am trying to copy the file using the following code an exception is raised:
System.IO.File.Copy(s, destFile, true);
The exception raised is:
The process cannot access the file 'D:\temp\1000000045.zip' because it is being used by another process.
I do not want to create a new file, I just want to copy it or delete it. Is this possible?