Command Prompt Problem

Status
Not open for further replies.
V

vaibhavtek

Guest
Hi Friends,

I have a problem in Command Prompt.

Suppose If have a folder named "test" located in C: and want it to copy it in a folder name "result" located in C: then we write the command:-

CD C:\
copy test result

But if I have a folder named "My Test" and want it to copy it in a folder named "result" both are located in C: then what command I must use.

If I use:-

CD C:\
copy My Test result

then this doesnot work because in "My Test" folder I have "My<SPACE>Test" and if I use this how it can copy as Command Prompt will be confuse.

so for space what command I should write..:confused: :confused: :confused:

Hope u understand what I mean..??

If not then pls reply..

Awating for reply and help..
 
the command

copy "my test" result

will copy only the files located within the directory "my test". i guess u dont have any files under the directory "my test" so the error msg u got. create some files inside the folder and see the result. copy command only copies files not the folders. to copy folders or sub-folder u need to give the command

"xcopy"
 
OP
V

vaibhavtek

Guest
i had done that.
My error.
thanks sakumar79 and passion_unlimitedd for replying.
 
Status
Not open for further replies.
Top Bottom