vbs中获取脚本当前路径的2个方法
发布时间:2016-12-28 来源:查字典编辑
摘要:方法一:复制代码代码如下:currentpath=createobject("Scripting.FileSystemObject").Ge...
方法一:
复制代码 代码如下:
currentpath = createobject("Scripting.FileSystemObject").GetFolder(".").Path
方法二:
复制代码 代码如下:
currentpath = createobject("Scripting.FileSystemObject").GetFile(Wscript.ScriptFullName).ParentFolder.Path