在调用 CMD 时,如脚本中用 WScript.Shell 调用。
如果参数中有包含空格的长路径名时,必须要加引号才能正确被识别。
是的,大家都知道要加引号,但怎么加却容易被误解。这个问题,不时地会遇上,上次弄清楚了,但隔一段时间,还是忘了,同样的问题又要重新摸索,非常痛苦。
如:
Set objShell = WScript.CreateObject("WScript.Shell") cmd = "cmd.exe /C ""C:\Program Files\putty\pscp.exe"" -pw mypassword ""c:\Documents and Settings\myuser\fax.tif"" [email protected]:/pydio/fax/" returnValue = objShell.Run(cmd, 0, true)
这里执行时会提示命令找不到。
正确的方式是,将 /C 后面所有字符,再加上双引号:
Set objShell = WScript.CreateObject("WScript.Shell") cmd = "cmd.exe /C """"C:\Program Files\putty\pscp.exe"" -pw mypassword ""c:\Documents and Settings\myuser\fax.tif"" [email protected]:/pydio/fax/""" returnValue = objShell.Run(cmd, 0, true)
因为,这里相当于有两条命令,并且是嵌套的,外面的命令是:
cmd.exe /C "command"
命令是 cmd.exe,两个参数分别是 /C, "command",我们这里的 command 是
"C:\Program Files\putty\pscp.exe" -pw mypassword "c:\Documents and Settings\myuser\fax.tif" [email protected]:/pydio/fax/
如果不加外面的引号,那以空格分隔的各项,会被解析为外面 cmd.exe 这条命令的参数,所以要出错。
了解了很简单,但没想到这一点,一定会让你抓狂的,而且遗憾的是,找不到相关的明确说明,大都只是简单的说,加引号!