VB用TreView罗列出指定目录下的所有目录及文件

Public Function SearchFiles(Path As String,FileType As String)     '历遍指定路径中的文件
    Dim Files()  As String '文件路径
    Dim Folder() As String '文件夹路径
    Dim 父() As String
    Dim a,b As Long
    Dim sPath As String
    Dim Nodeindex As Node
    On Error Resume Next
    If Right(Path,1) <> "\" Then Path = Path & "\"
    sPath = Dir(Path & FileType) '查找第一个文件
    Do While Len(sPath) '循环到没有文件为止
        If Path = Text1.Text Then
            Set Nodeindex = TreeView1.Nodes.Add(,sPath,sPath)
        Else
            父 = Split(Path,"\")
            Set Nodeindex = TreeView1.Nodes.Add(父(UBound(Split(Path,"\")) - 1),tvwChild,sPath)
        End If
        Nodeindex.Sorted = True
        sPath = Dir '查找下一个文件
        DoEvents '让出控制权
    Loop
    i = 0
    sPath = Dir(Path & "\",vbDirectory) '查找第一个文件夹
    Do While Len(sPath) '循环到没有文件夹为止
        If Left(sPath,1) <> "." Then '为了防止重复查找
            If GetAttr(Path & "" & sPath) And vbDirectory Then '如果是文件夹则。。。。。。
                a = a + 1
                ReDim Preserve Folder(1 To a)
                Folder(a) = Path & sPath & "\" '将目录和文件名称组合形成新的目录,并存放到数组中
                'Print Path
                If Path = Text1.Text Then
                    Set Nodeindex = TreeView1.Nodes.Add(,sPath)
                Else
                    父 = Split(Path,"\")
                    Set Nodeindex = TreeView1.Nodes.Add(父(UBound(Split(Path,sPath)
                End If
                Nodeindex.Sorted = True
            End If
        End If
        sPath = Dir '查找下一个文件夹
        DoEvents '让出控制权
    Loop
    For b = 1 To a '使用递归方法,遍历所有目录
        SearchFiles Folder(b),FileType
    Next
End Function
 
Private Sub Command1_Click()
    SearchFiles Text1.Text,"*.*"    'Text1.Text为指定目录路径比如"D:"
End Sub

相关文章

Format[$] ( expr [ , fmt ] ) format 返回变体型 format$ 强制返回为文本 --------------------------...
VB6或者ASP 格式化时间为 MM/dd/yyyy 格式,竟然没有好的办法, Format 或者FormatDateTime 竟然结果和...
在项目中添加如下代码:新建窗口来显示异常信息。 Namespace My ‘全局错误处理,新的解决方案直接...
转了这一篇文章,原来一直想用C#做k3的插件开发,vb没有C#用的爽呀,这篇文章写与2011年,看来我以前没...
Sub 分列() ‘以空格为分隔符,连续空格只算1个。对所选中的单元格进行处理 Dim m As Range, t...
  窗体代码 1 Private Sub Text1_OLEDragDrop(Data As DataObject, Effect As Long, Button As Integ...