main.bat contains:
cscript treat.vbs /a:"the name of file"
REm:文件名包含很多空格
treat.vbs contains:
dim param: param_input=Wscript.Arguments.Named("a")
msgbox param_input
shell.run "second.bat" param_input & " " & ""myfile.out""
second.bat contains:(just for purpose of test)
echo %1
echo %2
运行 main.bat 时,msgbox 显示一个包含所有文件名的弹出窗口(包括文件名中包含的所有空格,而回显消息 echo %1 显示文件名被删减。
请问我该怎么做才能解决这个问题?