|
I still use basic batch files for a lot of my backing up. One example is some databases where the data still fit on a CD-RW. Example:
echo This will copy files to the CD RW burner
echo Press any key to continue or Ctrl-C to EXIT
pause
xcopy f:\database\SourceDirectory\*.* R:\TargetDirectory\*.* /m /s /e /h
|