我试图编译一些java(学习java目前),这样做,我需要改变命令提示符的目录。
C:\...\Admin> cd D:\Docs\Java
C:\...\Admin> cd
C:\...\Admin
它不会改变目录。我再次尝试使用引号:
C:\...\Admin> cd "D:\Docs\Java"
C:\...\Admin>
同样,它不会改变目录。我做错了什么?
我试图编译一些java(学习java目前),这样做,我需要改变命令提示符的目录。
C:\...\Admin> cd D:\Docs\Java
C:\...\Admin> cd
C:\...\Admin
它不会改变目录。我再次尝试使用引号:
C:\...\Admin> cd "D:\Docs\Java"
C:\...\Admin>
同样,它不会改变目录。我做错了什么?
当前回答
正如@nasreddine回答的那样,或者你可以使用/d
cd /d d:\Docs\Java
有关cd命令的更多帮助,请使用:
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.
其他回答
长话短说:
虽然它确实是cd driveletter:\以前(例如cd d:\),
在Windows 10中,它是drivelletter:\ only(例如d:)。
我想你用的是Windows系统。
一旦你打开CMD,你会显示默认位置,如这样
C:\Users\Admin -在您的情况下,如前所述,它将是您计算机的用户名
考虑如果你想移动到E目录,然后简单地键入 艾凡:
这将把用户移动到E: Directory。现在改变到任何文件夹,你想在E:驱动器指向
例如:如果你想移动到E文件夹的软件目录,那么首先键入
E:
然后输入文件夹的位置
cd E: \软件
违反了
为了移动到D盘在windows中使用,
C:\Users\Balaji>d:
为了移动到E盘使用,
C:\Users\Balaji>e:
同样将适用于其他驱动器。
如果你想从C: Drive跳转到任何驱动器,只需在Anaconda中输入冒号(E:),然后回车,Anaconda会在E:Drive中将你重定向。
现在获取文件夹路径,使用cd .\<<Folder_Path>>,然后回车。
我把截图放上去供大家参考:
可以使用此命令修改目录 比如:当前如果你当前的工作目录是c:\ drive the 如果你想去你的D:\驱动器,然后键入这个命令
cd /d D:\
现在你的当前工作目录是D:\ drive,所以你想去Docs下的Java目录,所以输入下面的命令:
cd Docs\Java
注:d为drive(驱动器)