当前位置: 首页 > 图文教程 > 脚本技术 > VBScript > Windows Script Host之用vbs实现[浏览文件夹]功能

VBScript
VBS教程:正则表达式简介 -定位符
VBS教程:正则表达式简介 -限定符
VBS教程:正则表达式简介 -字符匹配
VBS教程:正则表达式简介 -非打印字符
VBS教程:正则表达式简介 -特殊字符
VBS教程:正则表达式简介 -普通字符
VBS教程:正则表达式简介 -优先权顺序
VBS教程:正则表达式简介 -建立正则表达式
VBS教程:正则表达式简介 -正则表达式语法
VBS教程:正则表达式简介 -使用正则表达式
VBS教程:正则表达式简介 -早期起源
VBS教程:正则表达式简介 -正则表达式
VBS教程:正则表达式简介
VBS教程:属性-VolumeName 属性
VBS教程:属性-Type 属性
VBS教程:属性-TotalSize 属性
VBS教程:属性-SubFolders 属性
VBS教程:属性-Size 属性
VBS教程:属性-ShortPath 属性
VBS教程:属性-ShortName 属性

VBScript 中的 Windows Script Host之用vbs实现[浏览文件夹]功能


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-11   浏览: 53 ::
收藏到网摘: n/a

'************************************************
' File:Dialog.vbs (WSH sample in VBScript)
' Author:(c) G. Born
'
' Using the shell dialog box to select a folder
'************************************************
Option Explicit
' Flags for the options parameter
Const BIF_returnonlyfsdirs = &H0001
Const BIF_dontgobelowdomain= &H0002
Const BIF_statustext = &H0004
Const BIF_returnfsancestors= &H0008
Const BIF_editbox= &H0010
Const BIF_validate = &H0020
Const BIF_browseforcomputer= &H1000
Const BIF_browseforprinter = &H2000
Const BIF_browseincludefiles = &H4000
Dim wsh, objDlg, objF
' Get Application object of the Windows shell.
Set objDlg = WScript.CreateObject("Shell.Application")
' Use the BrowseForFolder method.
' For instance: Set objF = objDlg.BrowseForFolder _
' (&H0, "Select the folder to copy", &H10, "C:\Born")
Set objF = objDlg.BrowseForFolder (&H0, _
"Select the folder to copy", _
BIF_editbox + BIF_returnonlyfsdirs)
' Here we use the first method to detect the result.
If IsValue(objF) Then
MsgBox "Selected folder: " & objF.Title
Else
MsgBox "Canceled"
End If
' Here we use TypeName to detect the result.
If InStr(1, TypeName(objF), "Folder") > 0 Then
MsgBox "Selected folder: " & objF.Title
Else
MsgBox "Canceled"
End If
Function IsValue(obj)
' Check whether the value has been returned.
Dim tmp
On Error Resume Next
tmp = " " & obj
If Err <> 0 Then
IsValue = False
Else
IsValue = True
End If
On Error GoTo 0
End Function
'*** End