我想问一个问题。
我想在目录文件\程序中“调用”一个文件。
致电* \ program \ test.bat
我该怎么做?
感谢您的帮助。
答案 0 :(得分:1)
%~dp0
为您提供正在运行的批处理文件所在的目录。
所以这应该做:
call %~dp0\subdir\test.bat
答案 1 :(得分:0)
当program\test.bat
文件夹位于program
所在的位置时,这将调用current batch file
文件。
call "program\test.bat"