I ran a batch script to copy all the files on an internal hard drive to an external hard drive using the following script;
cd c:\
xcopy /s /e /d /y /c C:\ H:\Backup
The first thing I did was to create the folder Backup on the H: drive then I ran the script. When it ran the folder disappeared from the H: drive. Checking the properties of the drive the usage increased by the size of all the files that should have been copied. I searched for the folder on the drive but it could not be found.
Any help?
Thanks