VBS中解决带空格路径的三种方法
程序员文章站
2022-06-24 15:41:25
方法一:
set wshell=createobject("wscript.shell")
wshell.run """c:\program files\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
方法三:
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实现截图功能
推荐阅读
-
frameset布局时frame中src路径的页面没有加载的解决方法
-
在Linux中打开了太多文件(Too many open files)的三种解决方法
-
在SQL Server中实现最短路径搜索的解决方法
-
php获取URL中带#号等特殊符号参数的解决方法
-
ios12中遇到的带input弹窗的错位问题的解决方法
-
如何解决婚姻中的问题?教你三种非常好用的方法
-
frameset布局时frame中src路径的页面没有加载的解决方法
-
vue-cli中打包图片路径错误的解决方法
-
Python3.6-MySql中插入文件路径,丢失反斜杠的解决方法
-
在Linux中打开了太多文件(Too many open files)的三种解决方法