Windows – the efficient way to backup large files

backupbatchcopywindows

I have the schedule job of backing large files in Windows Server and it takes almost 2 hours to finish.

For now, I only use copy command in the .bat and copy the large files to another folder.

I'm wondering whether there is more efficient way than the copy command to backup the large files(approximately 90GB). For example, write an c++ program to copy the files rather than the copy command.

Many thanks.

Best Answer

The copy command you're using is likely already written in C++ or C, or even with lower-level routines, so you won't really see any speed gains by simply using existing copy functions or methods in those languages.