vb.net 搜索子目录下的文件

ForEachfilenameAsStringInIO.Directory.GetFiles("c:\windows","*.csv")DimfileAsIO.FileI... For Each filename As String In IO.Directory.GetFiles("c:\windows", "*.csv")
Dim file As IO.FileInfo = New IO.FileInfo(filename)
MsgBox(file.FullName)
Next

上面的代码只能 搜索到 当前文件夹的 .csv, 但我想要的是 当前文件夹以及文件夹下面的子文件夹里的 csv 有办法么?
已经自己 解决了。

For Each filename As String In IO.Directory.GetFiles("C:\Users\qc\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\", "*.csv",IO.SearchOption.AllDirectories)
Dim file As IO.FileInfo = New IO.FileInfo(filename)
MsgBox(file.FullName)
Next
展开
 我来答
曹晓山11
推荐于2016-08-17 · 知道合伙人互联网行家
曹晓山11
知道合伙人互联网行家
采纳数:3033 获赞数:52066
毕业南阳理工学院计算机科学与技术专业,本科学位。互联网行业从业3年工作经验,读过编程类相关书籍多本。

向TA提问 私信TA
展开全部

vb.net编程查找搜索指定目录下面的所有文件和其子目录下的文件,方法如下:

''=============================================
''名称: FindPath
''作用: 查找搜索指定目录下面的所有文件和其子目录下的文件
''参数:strPath 要查找的目录,
''strFiles 用于存查找结果的缓冲区,String 类型的动态数组,调用时事先初始化, 如Redim strFiles(0)
''FileCount 用于返回文件个数
''=============================================
Public Sub FindPath(ByVal strPath As String, strFiles() As String, FileCount As Long)
Dim strDirs()   As String
Dim strResult   As String
Dim FileLimit   As Long
Dim dirLimit    As Long
Dim dirCount    As Long
Dim I           As Long
    
    FileLimit = UBound(strFiles) + 1
    dirLimit = 0
    If Right$(strPath, 1) <> "/" Then strPath = strPath & "/"
    strResult = Dir(strPath, vbDirectory + vbSystem + vbReadOnly + vbHidden + vbNormal + vbArchive)
    Do While Len(strResult) > 0
        If strResult <> "." And strResult <> ".." Then
            If (GetAttr(strPath & strResult) And vbDirectory) <> vbDirectory Then
                If FileCount >= FileLimit Then
                    ReDim Preserve strFiles(FileLimit + 10)
                    FileLimit = FileLimit + 10
                End If
                strFiles(FileCount) = strPath & strResult
                FileCount = FileCount + 1
            Else
                If dirCount >= dirLimit Then
                    ReDim Preserve strDirs(dirLimit + 10)
                    dirLimit = dirLimit + 10
                End If
                strDirs(dirCount) = strPath & strResult
                dirCount = dirCount + 1
            End If
        End If
        strResult = Dir(, vbDirectory + vbSystem + vbReadOnly + vbHidden + vbNormal + vbArchive)
    Loop
    
    For I = 0 To dirCount - 1
        Call FindPath(strDirs(I), strFiles, FileCount)
    Next I
End Sub
百度网友bdb9803
推荐于2018-03-22 · TA获得超过1.1万个赞
知道大有可为答主
回答量:1.1万
采纳率:53%
帮助的人:1亿
展开全部
For Each foundFile As String In My.Computer.FileSystem.GetFiles("C:\windows", FileIO.SearchOption.SearchAllSubDirectories, "*.csv")
            ListBox1.Items.Add(foundFile)
        Next

我用了列表框显示,你自己改一下

本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式