开发者

VBS打开当前脚本所在文件夹

开发者 https://www.devze.com 2022-12-01 11:55 出处:网络 作者: 一株禾
有时候我们需要获取当前vbs脚本所在的文件夹,或者运行当前脚本文件夹中的文件那么就需要参考下面的代码了

方法一:Wscript.ScriptFullName

'创建一个 Wscript.Shell 对象的实例,稍后会使用这个对象启动 Windows 资源管理器
Set objshell = CreateObject("Wscript.Shell")
'获取脚本的路径
strPath = Wscript.ScriptFullName
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.GetFile(strPath)
'获取脚本当前所在文件夹的路径
st编程客栈rFolder = objFSO.GetParentFolderName(objFile)QJdHAzJFj 
strPath = "explorer.exe /e," & strFolder
'启动 Windows 资源管理器http://www.devze.com,打开脚本所在的文件夹
objShell.Run strPath

方法二:objShell.CurrentDirectory

这种方法代码少了一些

set objShell = CreateObject("Wscript.Shell")
'脚本的当前目录
strPath = objShell.CurrentDirectory
strPath = "explorhttp://www.devze.comer.exe /e," & strPath
objShell.Run strPath

下面是我们小编的补充

如果是脚本中需要调用下面很简单的一句话就可以获取当前目录

currentpath = createobject("Scripting.File编程客栈SystemObject").GetFolder(".").Path

currentpath = createobject("Scripting.FileSystemObject").GetFile(Wscript.S开发者_Go入门criptFullName).ParentFolder.Path

是不是更简单呢,这篇文章就分享到这了,希望大家以后多多支持我们。

0

精彩评论

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

关注公众号