例如bat文件中写
C:/Program Files (x86)/Google/Chrome/Application/chrome.exe ./html/index.htmlpause
会报错,'C:/Program' 不是内部或外部命令。问题出在路径中的空格,将整个路径打上双引号就行了。即
"C:/Program Files (x86)/Google/Chrome/Application/chrome.exe" ./html/index.htmlpause
本文共 285 字,大约阅读时间需要 1 分钟。
例如bat文件中写
C:/Program Files (x86)/Google/Chrome/Application/chrome.exe ./html/index.htmlpause
会报错,'C:/Program' 不是内部或外部命令。问题出在路径中的空格,将整个路径打上双引号就行了。即
"C:/Program Files (x86)/Google/Chrome/Application/chrome.exe" ./html/index.htmlpause
转载于:https://www.cnblogs.com/VVingerfly/p/7491583.html