create batch file to backup

superway

New Member
Hello,

Can anyone help me this question?
I would like to create a Batch file to copy my testing data from C:\testdata where to store test data after finishing testing, and then transfer this test data to a different network M:\ backup_testdata. This is a backup test file that will receive every hour and my boss will monitor it.
Would you please show me step by step ?

Thanks in advanced

CVN
 
This sounds like homework but you simply need to copy the file do this all the time at work..

example let me know if you need more..

Rem File to Backup
copy C:\testdata\(filename here) M:\backup_testdata\(filename here)
 
That is assuming that the network drive is mapped, and the files only reside in one constant locatin
 
Back
Top