backup/copy tools which can handle long filenames/paths

Soldato
Joined
10 Aug 2003
Posts
2,695
Location
London
Does anyone know of any backup tools, to copy files with long filenames and/or paths. It is to copy files from one hard drive to another on a daily basis

Thanks in advance guys :)
 
xp or vista?

robocopy

robocopy /e "c:\source folder" "d:\destination folder"

vista has robocopy installed already
for xp, drop this into 'windows\system32" folder..

http://bleddyn.co.uk/help/1files/ROBOCOPY.EXE


save the bold text in notepad as 'robocopy backup.bat' then use task scheduler to run it, or just double click the bat each time you want it run

it'll do a full copy on the first run
then every run after that, it'll copy only new & updated files
 
do you know what the command switch is for when you only want to copy files that have been changed since you last backed up/copied files over?
i.e. I want after running this script for the first time, only want it to copy files that have been changed/updated, newly created etc to be copied when i run the script again
Thanks
 
Last edited:
Back
Top Bottom