开发者

VBS中解决带空格路径的三种方法

开发者 https://www.devze.com 2022-11-30 14:41 出处:网络 作者: hebedich
我们在使用VBS的时候,经常会遇到路径中带有空格的状况,直接使用的话,脚本会报错,那么我们如何处理呢,这里给大家总结了常用的3个方法,有需要的小伙伴可以参考下。

方法一:

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
 

方法三:

www.devze.com

Public Const vbQuote = """"
temp="C:\Phttp://www.devze.comrogram Files\360\360se3编程客栈360se.exe"
path = vbQu编程客栈ote & temp & vbQuote
Set wshell=Crea开发者_Go开发teObject("WScript.Shell")
wshell.Run path,1,True
Set wshell = Nothing

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号