获取相同目录的文件

时间:2014-01-13 06:22:20

标签: cmd directory call

我想问一个问题。

我想在目录文件\程序中“调用”一个文件。

  

致电* \ program \ test.bat

我该怎么做?

感谢您的帮助。

2 个答案:

答案 0 :(得分:1)

%~dp0为您提供正在运行的批处理文件所在的目录。

所以这应该做:

call %~dp0\subdir\test.bat

答案 1 :(得分:0)

program\test.bat文件夹位于program所在的位置时,这将调用current batch file文件。

call "program\test.bat"