IShellDispatch.Explore 方法

在 Windows 资源管理器窗口中打开指定的文件夹。

语法

IShellDispatch.Explore(
  vDir
)

IShellDispatch.Explore( _
  ByVal vDir As Variant _
)

参数

vDir [in]

类型: Variant

要显示的文件夹。 这可以是指定文件夹路径或 ShellSpecialFolderConstants 值之一的字符串。 请注意, 在 ShellSpecialFolderConstants 中找到的常量名称在 Visual Basic 中可用,但在 VBScript 或 JScript 中不可用。 在这些情况下,必须使用数值来代替它们。

返回值

JScript

此方法不返回值。

VB

此方法不返回值。

备注

此方法通过 Shell.Explore 方法实现和访问。

示例

以下示例演示如何在 JScript、VBScript 和 Visual Basic 中使用 Explore

Jscript:

<script language="JScript">
    function fnShellExploreJ()
    {
        var objShell = new ActiveXObject("shell.application");
        
        objshell.Explore("C:\\");
    }
</script>

VBScript:

<script language="VBScript">
    function fnShellExploreVB()
        dim objShell
        dim ssfWINDOWS
        ssfWINDOWS = 36

        set objShell = CreateObject("shell.application")
        objshell.Explore(ssfWINDOWS)

        set objShell = nothing
    end function
 </script>

Visual Basic:

Private Sub fnShellExploreVB()
    Dim objShell As Shell

    Set objShell = New Shell
    objshell.Explore (ssfPERSONAL)

    Set objShell = Nothing
End Sub

要求

要求
最低受支持的客户端
Windows 2000 专业版、Windows XP [仅限桌面应用]
最低受支持的服务器
Windows 2000 Server [仅限桌面应用]
标头
Shldisp.h
IDL
Shldisp.idl
DLL
Shell32.dll (4.71 或更高版本)