vbs中获取脚本当前路径的2个方法
这篇文章主要介绍了vbs中获取当前脚本所在路径的2个方法,本文中的方法都是通过FileSystemObject来实现,需要的朋友可以参考下
方法一:
复制代码 代码如下:
currentpath = createobject("Scripting.FileSystemObject").GetFolder(".").Path
方法二:
复制代码 代码如下:
currentpath = createobject("Scripting.FileSystemObject").GetFile(Wscript.ScriptFullName).ParentFolder.Path
精彩图集
精彩文章