VBS中解决带空格路径的三种方法
时间:2021-04-12 08:51:40|栏目:VBS|点击: 次
方法一:
Set wshell=CreateObject("WScript.Shell") wshell.Run """C:\Program Files\360\360se\360se.exe""",5,True Set wshell = Nothing
方法二:
temp="C:\Program Files\360\360se3\360se.exe" path = Chr(34) & temp & Chr(34) Set wshell=CreateObject("WScript.Shell") wshell.Run path,1,True Set wshell = Nothing
方法三:
Public Const vbQuote = """" temp="C:\Program Files\360\360se3\360se.exe" path = vbQuote & temp & vbQuote Set wshell=CreateObject("WScript.Shell") wshell.Run path,1,True Set wshell = Nothing
栏 目:VBS
下一篇:WMI 创建系统服务的实现代码(Automatic)
本文标题:VBS中解决带空格路径的三种方法
本文地址:http://www.codeinn.net/misctech/99430.html