Re: Copy Script



That's because you are calling CreateFolder, but you are expecting it
to CreateFolders ;-) So it's rightly complaining that the path
BackupDriveLetter & computername doesn't exit.


Just do it in 2 lines of code instead

objFSO.CreateFolder(BackupDriveLetter & computername)

objFSO.CreateFolder(BackupDriveLetter & computername & "\" &
objSubfolder.name )

Tim.

.