Rss & SiteMap

Foxtable(狐表) http://www.foxtable.com

新一代数据库软件,完美融合Access、Foxpro、Excel、vb.net之优势,人人都能掌握的快速软件开发工具!
共4 条记录, 每页显示 10 条, 页签: [1]
[浏览完整版]

标题:如何选择一个文件夹,并遍历该目录下的所有子目录,读取txt文件的内容

1楼
sloyy 发表于:2024/3/11 22:43:00
一个文件夹,下面包含很多子目录,想遍历这个文件夹,读取所有子目录内的txt文件,该怎么做?

2楼
pyh6918 发表于:2024/3/11 23:02:00
帮助文件搜:FileSys
3楼
有点蓝 发表于:2024/3/11 23:08:00
参考:http://www.foxtable.com/bbs/dispbbs.asp?BoardID=2&ID=186470&skin=0
4楼
sloyy 发表于:2024/3/12 12:52:00
封装成内部函数,拿去用吧
Dim lg As New List(Of String)
Dim dlg As New FolderBrowserDialog
If dlg.ShowDialog = DialogResult.Ok Then
Dim path As String = args(0)
Dim ls = args(1)
For Each file As String In FileSys.GetFiles(path)
    If file.Contains(".txt") Then
        ls.add(file)
    End If
Next
For Each p As String In FileSys.GetDirectories(path) '循环调用自身代码
    Functions.Execute("文件递归", p, ls)
Next
End If
共4 条记录, 每页显示 10 条, 页签: [1]

Copyright © 2000 - 2018 foxtable.com Tel: 4000-810-820 粤ICP备11091905号

Powered By Dvbbs Version 8.3.0
Processed in .03125 s, 2 queries.