1
我正在嘗試創建一個批處理文件,該文件使用空格傳遞參數。批處理腳本中的空間
::create mono PCX file
"C:\Program Files\gs\gs9.06\bin\gswin64.exe" -q -dNOPAUSE -dSAFER -dBATCH -sPAPERSIZE=%3 -r200 -g1728x2285 -sDEVICE=pcxmono -sOutputFile="%~dpn2._temp_.%%d.pcx" "%1" -c quit
::create zip file
7za a "%2" "%~dpn2._temp_.*.pcx"
我的問題是,如果%1 =「test case.zip」我只能得到test.zip。有沒有辦法讓Windows cmd.exe解釋器在%2中正確地傳遞參數的空格?
最好。 wishi