1.

Solve : backup command cannot copy huge files??

Answer» <html><body><p>it stop half way. and return insufficient memory error..<br/>i use it to copy files to external <a href="https://interviewquestions.tuteehub.com/tag/hard-1015537" style="font-weight:bold;" target="_blank" title="Click to know more about HARD">HARD</a> disk...<br/><br/> Code: <a>[Select]</a>echo off<br/>:: variables<br/><a href="https://interviewquestions.tuteehub.com/tag/set-11758" style="font-weight:bold;" target="_blank" title="Click to know more about SET">SET</a> <a href="https://interviewquestions.tuteehub.com/tag/drive-959713" style="font-weight:bold;" target="_blank" title="Click to know more about DRIVE">DRIVE</a>=D:\2<br/>SET date="%date:~6,4%-%date:~0,2%-%date:~3,2%"<br/><br/>set backupcmd=xcopy /s /c /d /e /h /i /r /k /y<br/><br/>echo ### Backing up your Sites directory...<br/>%backupcmd% "C:\1"  "%drive%\%date%"<br/><br/>echo <a href="https://interviewquestions.tuteehub.com/tag/backup-18158" style="font-weight:bold;" target="_blank" title="Click to know more about BACKUP">BACKUP</a> Complete - Your Backup is located at %drive%<br/>pause<br/>if <a href="https://interviewquestions.tuteehub.com/tag/target-25812" style="font-weight:bold;" target="_blank" title="Click to know more about TARGET">TARGET</a> medium has FAT file system max file size is (4 GB minus 1 byte)<br/><br/>If it says that there is insufficient space on the disk, then there is your problem. Your external hard drive is too small. Quote</p><blockquote>backup command cannot copy huge files?</blockquote> <br/>... the topic title is possibly ambiguous? Huge files or huge number of files?<br/>huge files and also huge number of files and with many directories....<br/>my ext hdd is enough, i tried windows copy method, successfully....<br/>or maybe i need to separate copy by using more batch file?what filesystem does it have?<br/></body></html>


Discussion

No Comment Found