-
使用范围
- %cd%:.bat file、cmd
- %~dp0%: .bat file
-
示例脚本
-
创建文件 D:cd~dp0.bat
@echo off echo this is %%cd%% : %cd% echo this is %%~dp0 : %~dp0
-
在 C:UsersAdministrator 路径执行
this is %cd% : C:UsersAdministrator this is %~dp0 : D:
-
在 D: 路径执行
this is %cd% : D: this is %~dp0 : D:
-
参考
- [bat 中%cd%和%~dp0 的区别]https://blog.csdn.net/lolichan/article/details/84919982