1.

Solve : backup command cannot copy huge files??

Answer»

it stop half way. and return insufficient memory error..
i use it to copy files to external HARD disk...

Code: [Select]echo off
:: variables
SET DRIVE=D:\2
SET date="%date:~6,4%-%date:~0,2%-%date:~3,2%"

set backupcmd=xcopy /s /c /d /e /h /i /r /k /y

echo ### Backing up your Sites directory...
%backupcmd% "C:\1"  "%drive%\%date%"

echo BACKUP Complete - Your Backup is located at %drive%
pause
if TARGET medium has FAT file system max file size is (4 GB minus 1 byte)

If it says that there is insufficient space on the disk, then there is your problem. Your external hard drive is too small. Quote

backup command cannot copy huge files?

... the topic title is possibly ambiguous? Huge files or huge number of files?
huge files and also huge number of files and with many directories....
my ext hdd is enough, i tried windows copy method, successfully....
or maybe i need to separate copy by using more batch file?what filesystem does it have?


Discussion

No Comment Found