我正在尝试使用批处理脚本将一些命令行参数传递给winform应用程序,以便使用这些args启动应用程序。通过这种方式:
start WindowsFormsApp1.exe username password repository sourcePath targetPath
exit
我想知道是否有一种添加循环的方式来传递这些参数,而不是将它们用空格括起来。
@echo off
set username = value1
set password = value2
set repository = value3
set sourcePath = value4
set targetPath = value5
start WindowsFormsApp1.exe username password repository sourcePath targetPath
exit
如果不使用循环,我正在考虑使用列表,这些值之间用空格分隔。我不确定是否可以将列表传递到命令行。