Hi all
I'm trying to create a batch file to copy one file to another in the backup location. I want to Append new data the backup file. The following line I have will do the trick but it overwrite everytime. Thanks for any help
copy c:\data\xxx.tdf c:\backup\backup.tdf
chdir c:\data
del *.tdf
:end
exit
I'm trying to create a batch file to copy one file to another in the backup location. I want to Append new data the backup file. The following line I have will do the trick but it overwrite everytime. Thanks for any help
copy c:\data\xxx.tdf c:\backup\backup.tdf
chdir c:\data
del *.tdf
:end
exit