带有空格的命令行

带有空格的命令行

我想要执行如下命令行:

for /F "tokens=4" %%F in ('c:\spaces spaces\filever.exe /A /D D:\Spaces Other\a.dll') do (set VERSION=%%F)

我遇到了空格问题。我该如何用带空格的路径编写该命令。

谢谢,伊多

答案1

您应该能够将路径放在引号中。

' "c:\spaces spaces\filever.exe" /A /D "D:\Spaces Other\a.dll" '

相关内容