批处理脚本 - CD 命令

此批处理命令有助于更改不同的目录,或显示当前目录。

语法

cd

示例

以下示例展示了如何以多种方式使用 cd 命令。

@echo off
Rem The cd without any parameters is used to display the current working directory
cd
Rem Changing the path to Program Files
cd\Program Files
cd
Rem Changing the path to Program Files
cd %USERPROFILE%
cd
Rem Changing to the parent directory
cd..
cd
Rem Changing to the parent directory two levels up
cd..\..
cd

输出

更改到各个文件夹位置后,上述命令将显示以下输出。

C:\Users\Administrator
C:\Program Files
C:\Users\Administrator
C:\Users
C:\

❮ batch_script_commands.html