WScript.Shell打开本地程序 路径中有空格和中文怎么处理?
WScript.Shell打开本地程序路径中有空格和中文怎么处理?
代码如下:
var WshShell = new ActiveXObject("WScript.shell");
WshShell.run("D:\\Program Files\\KuGou2012\\KuGou.e
------解决方案--------------------WshShell.run("\"D:\\Program Files\\KuGou2012\\KuGou.exe\"");
这样行吗?我猜的