View Single Post
Old 12-15-2007, 08:37 PM   #8
TwoRails
Member (14 bit)
Premium Member
 
TwoRails's Avatar
 
Join Date: Jan 2002
Location: The Great NorthWest
Posts: 12,594
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
TwoRails is offline   Reply With Quote