| Author |
Copy by "Command Prompt"
|
|
|
| I want to copy a file to the "Documents and Settings" folder by Command Prompt.
But it doesn't accpect the following line as command:
[copy c:\file.txt d:\Documents and Settings\Admin\Desktop]
I receive the following error message:
[The syntax of the command is incorrect.]
Thanks | |
| enforcer 2004-08-05, 4:14 am |
| dos/command prompt doesn't like spaces in it's paths. Stick quotes around the destination path.
copy c:\file.txt "d:\Documents and Settings\Admin\Desktop" | |
| Teck Shark 2004-08-05, 11:08 am |
| Or you can modify the path so the command prompt can understand it.
copy c:\file.txt d:\Docume~1\Admin\Desktop
 | |
| ruscorp 2004-08-05, 12:48 pm |
| quote: Originally posted by asadi
I want to copy a file to the "Documents and Settings" folder by Command Prompt.
But it doesn't accpect the following line as command:
[copy c:\file.txt d:\Documents and Settings\Admin\Desktop]
I receive the following error message:
[The syntax of the command is incorrect.]
Thanks
I've had the same problem trying to copy someone’s Documents and Settings folder while doing a parallel installation.
Tell us the outcome of your problem. | |
|
| Thanks for your help, every thing is ok now..... |
|
|
|