输入访问目录的命令时命令提示符错误

Command Prompt Error when entered the command to access directory

我打开cmdC:\Users\Anonymous>

当我尝试访问某些内容时,它显示:

C:\Program Files\Oracle\VirtualBox is not Recognized as Internal or External command,
operable program or Batch file

早些时候,path 环境变量是空的,所以我输入了

需要修复!

您只是将路径写入命令行。 我猜您想导航到特定文件夹。在这种情况下,您应该使用命令 CD(更改目录),如下所示:

cd \ 

(用于导航到您的 c: 驱动器的根目录)

cd "Program Files"

(导航到 "Program Files" 文件夹)

cd Oracle 

(进入 Oracle 文件夹)

等...

或者,您可以在单个 CD 命令中编写所有内容

cd "\Program Files\Oracle\VirtualBox"

总而言之:您没有使用任何命令是在犯错误(因此错误 (...) 未被识别为内部或外部 )。 CD是命令,"c:\Program Files"是路径,CD命令的参数。