当前位置:主页 > 脚本语言 > VBS >

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

时间:2021-01-21 10:54:14 | 栏目:VBS | 点击:

方法一:

复制代码 代码如下:

currentpath = createobject("Scripting.FileSystemObject").GetFolder(".").Path

方法二:
复制代码 代码如下:

currentpath = createobject("Scripting.FileSystemObject").GetFile(Wscript.ScriptFullName).ParentFolder.Path

您可能感兴趣的文章:

相关文章