vbs中获取脚本当前路径的2个方法
(编辑:jimmy 日期: 2024/11/15 浏览:3 次 )
方法一:
复制代码 代码如下:
currentpath = createobject("Scripting.FileSystemObject").GetFolder(".").Path
方法二:
复制代码 代码如下:
currentpath = createobject("Scripting.FileSystemObject").GetFile(Wscript.ScriptFullName).ParentFolder.Path
下一篇:BAT批处理、VBScript批量安装字体脚本分享