批处理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:\