首页 > 编程 > VBScript > 正文

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

2020-06-26 18:31:33
字体:
来源:转载
供稿:网友

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

方法一:

 

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

方法二:

 

 
  1. temp="C:/Program Files/360/360se3/360se.exe" 
  2. path = Chr(34) & temp & Chr(34) 
  3. Set wshell=CreateObject("WScript.Shell"
  4. wshell.Run path,1,True 
  5. Set wshell = Nothing 

方法三:

 

 
  1. Public Const vbQuote = """" 
  2. temp="C:/Program Files/360/360se3/360se.exe" 
  3. path = vbQuote & temp & vbQuote 
  4. Set wshell=CreateObject("WScript.Shell"
  5. wshell.Run path,1,True 
  6. Set wshell = Nothing 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表