相关文章推荐
安静的小刀  ·  java8 ...·  8 月前    · 
有情有义的番茄  ·  WPF ...·  1 年前    · 

bat调用exe文件并传参数

在 Windows 中,可以使用批处理脚本 (BAT) 来调用 exe 文件并传递参数。

start "Title" "Path\to\exe" "parameter1" "parameter2" ...

例如,要在 C 盘根目录下运行 example.exe 并传递参数 "hello" 和 "world",可以这样写批处理脚本:

start "" "C:\example.exe" "hello" "world"

如果exe文件在当前目录下,可以这样写:

start "" %~dp0example.exe "hello" "world"

另外,也可以使用 call 命令来调用 exe 文件并传递参数,语法为:

call "Path\to\exe" "parameter1" "parameter2" ...
call "C:\example.exe" "hello" "world"

请注意,上述命令可能会在不同版本的 Windows 操作系统中有所不同。

  •