首页 > 编程 > VBScript > 正文

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

2020-07-26 11:45:52
字体:
来源:转载
供稿:网友

方法一:

复制代码 代码如下:

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

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

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

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