Copy or Xcopy

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

A simple instrucion like we use to do before on a batch file, xcopy e:\Os
meus Documentos\A minha música\para já\*.* f:\Os meus Documentos\A minha
música\para já\*. and it doesn't work. Any ideas pls?
Are the names for the directorys corrects?
Tks in advance
Pedro
 
You need to use forward slashes for parameters which are put at the end. For
instance:
xcopy e:\mydir\*.* f:\yourdir\ /O /S
To get all the instructions, enter "xcopy /?" without the quotes at the DOS
command line.
 
Back
Top