Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Atomic file copy under .NET

I am building a server app that copies files using System.IO.File.Copy(...) function. My files can be rather large, therefore, it has a fair chance that if the machine crashes, it happens during copying.

After restarting the service, I should be able to pick up the copy tasks and continue. How can I detect if a copy has been successfully completed or interrupted by server crash?

My current plan is to copy the files to a temporary name and once copying completed rename it to the final name. This way the file naming is able to carry the state information over the crash.

Do you have any good/better suggestions?

EDIT: Target OS is Win2003, therefore transactional NTFS is not available

like image 939
user256890 Avatar asked Feb 08 '10 14:02

user256890


1 Answers

Other have suggested transactional NTFS which is fine if you're deploying on Vista or later. If you need to support XP (or earlier) then temporary file followed by a move (rename) is the best solution.

The answer to this similar question provides more info: Atomicity of File.Move

like image 155
Paolo Avatar answered Oct 05 '22 20:10

Paolo