Reputation: 7045
I'm trying to compile some java (learning java currently), and to do so I need to change command-prompt's directory.
C:\...\Admin> cd D:\Docs\Java
C:\...\Admin> cd
C:\...\Admin
It doesn't change the directory. I try again using quotes:
C:\...\Admin> cd "D:\Docs\Java"
C:\...\Admin>
Again it doesn't change the directory. What am I doing wrong?
Upvotes: 561
Views: 1067203
Reputation: 5644
Use drive letter d for changing to D drive like:
C:\> d:
When changing drives, you just need to type the drive letter, like d: (don't use the backslash, like d:\ it doesn't work).
You only use cd when moving between directories within the same drive.
Upvotes: 75
Reputation: 11110
Long story short:
While it indeed has been cd driveletter:\
before (e.g. cd d:\
),
in Windows 10, it's driveletter:\
only (e.g. d:
).
Upvotes: 1
Reputation: 1123
If you want to jump from C: Drive
to any drive just type the drive name with colon like (E:
) in Anaconda and Enter
, Anaconda redirect you in that E:Drive.
Now take the folder path and use cd .\<<Folder_Path>>
and then Enter
.
I have put the screenshots for your reference:
Upvotes: 5
Reputation: 375
In order to move to D drive in windows use,
C:\Users\Balaji>d:
In order to move to E drive use,
C:\Users\Balaji>e:
same will be applicable for other drives.
Upvotes: 17
Reputation: 372
An easier way is to use PowerShell instead, that not require any additionnal flag:
W:\> cd C:\path\on\different\disk
Upvotes: 4
Reputation: 28329
The cd
command on Windows is not intuitive for users of Linux systems. If you expect cd
to go to another directory no matter whether it is in the current drive or another drive, you can create an alias for cd
. Here is how to do it in Cmder:
$CMDER_ROOT/config
and open the file user_aliases.cmd
cd=cd /d $*
Restart Cmder and you should be able to cd to any directory you want. It is a small trick but works great and saves your time.
Upvotes: 4
Reputation: 1322
you can use help on command prompt on cd command by writing this command cd /? as shown in this figure
Upvotes: 3
Reputation: 47081
The correct way to go from C:\...\Admin
to D:\Docs\Java
drive, is the following command :
cd /d d:\Docs\Java
If you're somewhere random on your D:\
drive, and you want to go to the root of your drive, you can use this command :
cd d:\
If you're somewhere random on your D:\
drive, and you want to go to a specific folder on your drive, you can use this command :
cd d:\Docs\Java
If you're on a different drive, and you want to go to the root of your D:\
drive, you can use this command :
cd /d d:\
If you're on a different drive, and you want to go to a specific folder on your D:
drive, you can use this command :
cd /d d:\Docs\Java
If you're on a different drive, and you want to go to the last open folder of you D:
drive, you can use this command :
cd /d d:
As a shorthand for cd /d d:
, you can also use this command :
d:
Upvotes: 45
Reputation: 11949
You can change directory using this command like : currently if you current working directoris c:\ drive the if you want to go to your D:\ drive then type this command
cd /d D:\
now your current working directory is D:\ drive so you want go to Java directory under Docs so type below command :
cd Docs\Java
note : d stands for drive
Upvotes: 6
Reputation: 104
I suppose you are using Windows system.
Once you open CMD you would be shown with the default location i.e. like this
C:\Users\Admin - In your case its admin as mentioned else it will be the username of your computer
Consider if you want to move to E directory then simply type E:
This will move the user to E: Directory. Now change to what ever folder you want to point to in E: Drive
Ex: If you want to move to Software directory of E folder then first type
E:
then type the location of the folder
cd E:\Software
Viola
Upvotes: 2
Reputation: 22334
As @nasreddine answered or you can use /d
cd /d d:\Docs\Java
For more help on the cd
command use:
C:\Documents and Settings\kenny>help cd
Displays the name of or changes the current directory.
CHDIR [/D] [drive:][path] CHDIR [..] CD [/D] [drive:][path] CD [..]
.. Specifies that you want to change to the parent directory.
Type CD drive: to display the current directory in the specified drive. Type CD without parameters to display the current drive and directory.
Use the /D switch to change current drive in addition to changing current directory for a drive.
If Command Extensions are enabled CHDIR changes as follows:
The current directory string is converted to use the same case as the on disk names. So CD C:\TEMP would actually set the current directory to C:\Temp if that is the case on disk.
CHDIR command does not treat spaces as delimiters, so it is possible to CD into a subdirectory name that contains a space without surrounding the name with quotes. For example:
cd \winnt\profiles\username\programs\start menu
is the same as:
cd "\winnt\profiles\username\programs\start menu"
which is what you would have to type if extensions were disabled.
Upvotes: 1008
Reputation: 121
If you want to change from current working directory to another directory then in the command prompt you need to type the name of the drive you need to change to, followed by : symbol. example: assume that you want to change to D-drive and you are in C-drive currently, then type D: and hit Enter.
On the other hand if you wish to change directory within same working directory then use cd(change directory) command followed by directory name. example: assuming you wish to change to new folder then type: cd "new folder" and hit enter.
Tips to use CMD: Windows command line are not case sensitive. When working with a file or directory with a space, surround it in quotes. For example, My Documents would be "My Documents". When a file or directory is deleted in the command line, it is not moved into the Recycle bin. If you need help with any of command type /? after the command. For example, dir /? would give the options available for the dir command.
Upvotes: 10
Reputation: 37788
The directory you're switching to is on another drive, you need to switch to that drive using :
C:\...\Admin> d:
then you can cd
into the directory you want.
C:\...\Admin> d:
D:\>cd "Docs\Java"
D:\Docs\Java>
Upvotes: 218