脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - VBS - VBS中解决带空格路径的三种方法

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

2020-08-16 14:11VBS教程网 VBS

我们在使用VBS的时候,经常会遇到路径中带有空格的状况,直接使用的话,脚本会报错,那么我们如何处理呢,这里给大家总结了常用的3个方法,有需要的小伙伴可以参考下。

方法一:

?
1
2
3
Set wshell=CreateObject("WScript.Shell")
wshell.Run """C:\Program Files\360\360se\360se.exe""",5,True
Set wshell = Nothing

方法二:

?
1
2
3
4
5
6
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

方法三:

?
1
2
3
4
5
6
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

 

延伸 · 阅读

精彩推荐