如何从脚本本身中获取 Windows .bat 脚本的名称?

如何从脚本本身中获取 Windows .bat 脚本的名称?

我有一个 .bat 文件。我想以编程方式获取 .bat 文件的名称。我该怎么做?

这是我的最终目标

"..\lib\nant\nant.exe" -buildfile:nant.build {{pass in name of this file here}}
pause

答案1

在命令行上尝试for /?。帮助显示了各种有用的文件名替换,例如:

%~I         - expands %I removing any surrounding quotes (")
%~fI        - expands %I to a fully qualified path name
%~dI        - expands %I to a drive letter only
%~pI        - expands %I to a path only
%~nI        - expands %I to a file name only
%~xI        - expands %I to a file extension only

将 I 替换为 0 以获取批处理文件名,将 I 替换为 1、2、3 等以获取参数名称。

答案2

%0% 变量将为您提供批处理文件的完整路径,包括其名称。可能有更好的方法只获取名称。

相关内容