如何使用 cmd.exe 返回上一个目录?

如何使用 cmd.exe 返回上一个目录?

可能重复:
Windows命令行能支持Linux的“cd -”吗?

在 Linux 下,我可以使用cd -返回上一个目录。在 Windows 上我该怎么做?

答案1

您可以使用 pushd 和 popd 命令。

  • pushd <dir>将目录从位置 a 更改为位置 b
  • popd将目录更改回目录 a

例子:

pushd %TEMP%     // go to user's temp dir, and remember
pushd \Windows   // go to windows dir, and remember
popd             // go back one dir, in this case the temp dir
popd             // go back one more dir, in this where you were before temp

答案2

Cmd.exe 是旧 MS-DOS 的模拟层,命令相同:

  1. 退后一步 =光盘..
  2. 全部向后 = 光盘 /

对于其他的,请查看网络上的一些 Ms-Dos 表

相关内容