站长资源脚本专栏

vbs中获取脚本当前路径的2个方法

整理:jimmy2024/12/27浏览2
简介方法一:复制代码 代码如下:currentpath = createobject("Scripting.FileSystemObject").GetFolder(".").Path方法二:复制代码 代码如下:currentpath = createobject("Scripting.File

方法一:
复制代码 代码如下:
currentpath = createobject("Scripting.FileSystemObject").GetFolder(".").Path

方法二:
复制代码 代码如下:
currentpath = createobject("Scripting.FileSystemObject").GetFile(Wscript.ScriptFullName).ParentFolder.Path