|
Answer» Hi, I am using cd to change to my destination DIRECTORY. I think it is not successful, since the path shown before prompt does not change. For example,
"C:\DOCUMENTS and Settings\lehe>cd D:\New FOLDER
C:\Documents and Settings\lehe>"
If I do dir, it still shows the files under "C:\Documents and Settings\lehe". How can I move to the path where I want to be" Thanks for help!you need to change the drive using this command Code: [Select]D: then Code: [Select]cd "D:\new folder" FBlehe - WELCOME to the CH forums.
You could also use CD /D D:\NEW FOLDER
-or-
You could use PUSHD D:\NEW FOLDER then POPD to return to the default directory you were in before using PUSHD.
Enter CD/? or PUSHD/? or POPD/? at the command prompt for more info.
Upper case is used for emphasis only.
Good luck
|