Moving files with batch files from one pc to a server, to a another pc – worried about disk corruption

batch-processingcorruption

I use scheduled tasks that calls a batch file, that calls more batch files to move about three files from a pc, to a server, then to multiple other pcs. It all happens very quickly, as they are small files.

Are there any pitfalls for how fast these transfers happen? I'm just mildly concerned about causing some disk corruption somehow.

I use logic like
1.
Call MapToPc
if files exist then move file to folder on server.
Disconnect

2.
Call SendtoPCs
If files exist (the files just moved to the server) then MapToPCs
Move all files
Disconnect

All of this happens in about 2 secs or less.

edit: this on windows 7, server 2003, xp respectively

Best Answer

Are there any pitfalls for how fast these transfers happen?

No.

If copying around files causes filesystem corruption, you have other issues.

Of course, make sure you have a good backup system, and that you test regularly.