Copy via command line

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

Guest

When I try this:

copy "C:\Documents and Settings\tuser\Application Data\Autodesk\AutoCAD 2004\R16.0\enu" "%USERPROFILE%\Application Data\Autodesk\AutoCAD 2004\R16.0\enu"

When I run it I get this error: C:\Documents and Settings\tuser\Application Data\Autodesk\AutoCAD 2004\R16.0\enu\*
The system cannot find the file specified.
0 file(s) copied.

It should work, shouldn't it? "tuser" is a different user account than my own but everyone on this computer has full permissions to all the \tuser\ stuff and everything that I am trying to copy is there and nt hidden or anything.
 
Does the file enu have an extension, or is enu a folder?
If it's a folder, and you are trying to copy its entire
contents, use:
"...Application Data\Autodesk\AutoCAD 2004\R16.0\enu\*.*"
for the origin, and use:
"...Application Data\Autodesk\AutoCAD 2004\R16.0\enu"
for the destination.

If enu is a file, do not specify enu for the destination,
use the folder.
"...\Application Data\Autodesk\AutoCAD 2004\R16.0"


Austin M. Horst
 
Back
Top