What is wrong with this command line

  • Thread starter Thread starter Newbie
  • Start date Start date
N

Newbie

Hi,
The following does not work

c:\ides>copy *.* c:\program files\folder1\*.*

What is wrong with this - it says incorrect syntax
 
Newbie wrote in
Hi,
The following does not work

c:\ides>copy *.* c:\program files\folder1\*.*

What is wrong with this - it says incorrect syntax

Destination is a directory.
Paths with embedded space must be wrapped in dbl-quotes.

copy *.* "c:\program files\folder1"
 
There is a space between the words program and files. Try
containing the whole c:\... string in quotes. Hope this
helps. Steve
 
Back
Top