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

 更新时间:2014年08月14日 10:58:12   投稿:junjie  
这篇文章主要介绍了vbs中获取当前脚本所在路径的2个方法,本文中的方法都是通过FileSystemObject来实现,需要的朋友可以参考下

方法一:

复制代码 代码如下:

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

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

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

相关文章

最新评论