windows shell - 如何检测当前放置脚本文件的位置?

发布于 2024-08-22 06:06:24 字数 168 浏览 4 评论 0原文

我正在尝试将 Windows shell 文件插入到将分析文件夹内容的文件夹中。

现在我想知道如何检测当前路径?即使用 FileSystemObject 放置 vbs 文件的位置?

设置 objFSO = CreateObject("Scripting.FileSystemObject")

I am trying the windows shell file which will be inserted in the folder where it will analyze folders content.

Now i would like to know how can i detect which is the current path ? i.e. location where the vbs file is placed using FileSystemObject?

Set objFSO = CreateObject("Scripting.FileSystemObject")

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

情绪 2024-08-29 06:06:24
Set objFS = CreateObject("Scripting.FileSystemObject")
WScript.Echo objFS.GetParentFolderName(WScript.ScriptFullName)
Set objFS = CreateObject("Scripting.FileSystemObject")
WScript.Echo objFS.GetParentFolderName(WScript.ScriptFullName)
打小就很酷 2024-08-29 06:06:24

您可以从 WScript.ScriptFullName。只需从末尾删除文件名(最后一个反斜杠后面的位)。我通常使用 JScript 编写脚本,但 IIRC VBScript 有一个 InStrRev 函数,可以帮助您找到最后一个反斜杠。或者:为 WScript.ScriptFullName 路径创建一个 File 对象,然后使用其 ParentFolder 属性。像(未经测试)的东西:

Dim objFSO
Dim objFile
Dim objFolder

Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.GetFile(WScript.ScriptFullName)
Set objFolder = objFile.ParentFolder

You can get that from WScript.ScriptFullName. Just remove the filename from the end (the bit after the last backslash). I normally use JScript for scripts, but IIRC VBScript has an InStrRev function that will help you find the last backslash. Or: Create a File object for the WScript.ScriptFullName path and then use its ParentFolder property. Something like (untested):

Dim objFSO
Dim objFile
Dim objFolder

Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.GetFile(WScript.ScriptFullName)
Set objFolder = objFile.ParentFolder
眼眸印温柔 2024-08-29 06:06:24

为了仅获取没有扩展名的完整路径,我使用 Replace(WScript.ScriptFullName, WScript.ScriptName, "") 来生成文件路径

To get the full path only without the extension I use Replace(WScript.ScriptFullName, WScript.ScriptName, "") to just result in a filepath

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文