




已阅读5页,还剩28页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
精品文档垃圾百度文库,非说我文档质量低,害我复制这么多,双横线以后是复制品,大家不用看这段代码是我在网上找到的,速度很快,有需要的朋友保存下吧执行前先加个command,一个listbox遍历文件夹Private Sub ShowFolderList(folderspec) Dim fs, f, f1, s, sf Dim hs, h, h1, hf Set fs = CreateObject(Scripting.FileSystemObject) Set f = fs.GetFolder(folderspec) Set sf = f.SubFolders For Each f1 In sf List1.AddItem folderspec & & f1.Name Call ShowFolderList(folderspec & & f1.Name) NextEnd Sub遍历某文件夹下的文件Private Sub Showfilelist(folderspec) Dim fs, f, f1, fc, s Set fs = CreateObject(Scripting.FileSystemObject) Set f = fs.GetFolder(folderspec) Set fc = f.Files For Each f1 In fc List1.AddItem f1.Name NextEnd Sub遍历某文件夹及子文件夹中的所有文件Sub SosuoFile(MyPath As String)Dim Myname As StringDim a As StringDim B() As StringDim dir_i() As StringDim i, idir As LongIf Right(MyPath, 1) Then MyPath = MyPath + Myname = Dir(MyPath, vbDirectory Or vbHidden Or vbNormal Or vbReadOnly)Do While Myname If Myname . And Myname . ThenIf (GetAttr(MyPath & Myname) And vbDirectory) = vbDirectory Then 如果找到的是目录idir = idir + 1ReDim Preserve dir_i(idir) As Stringdir_i(idir - 1) = MynameElseList1.AddItem MyPath & Myname 把找到的文件显示到列表框中End IfEnd IfMyname = Dir 搜索下一项LoopFor i = 0 To idir - 1Call SosuoFile(MyPath + dir_i(i)Next iReDim dir_i(0) As StringEnd Sub附: 在这里可以处理目录中的文件 Fn.Name 得到文件名 Fn.Size 得到文件大小 Fn.Path 得到文件路径 Fn.Type 得到文件类型 Fn.DateLastModified 得到文件最后的修改日期调用方法ShowFolderList (c:a) 查找目录Showfilelist (c:a) 查找文件SosuoFile (c:a) 查找目录+文件遍历文件夹Private Sub ShowFolderList(folderspec) Dim fs, f, f1, s, sf Dim hs, h, h1, hf Set fs = CreateObject(Scripting.FileSystemObject) Set f = fs.GetFolder(folderspec) Set sf = f.SubFolders For Each f1 In sf List1.AddItem folderspec & & f1.Name Call ShowFolderList(folderspec & & f1.Name) NextEnd Sub遍历某文件夹下的文件Private Sub Showfilelist(folderspec) Dim fs, f, f1, fc, s Set fs = CreateObject(Scripting.FileSystemObject) Set f = fs.GetFolder(folderspec) Set fc = f.Files For Each f1 In fc List1.AddItem f1.Name NextEnd Sub遍历某文件夹及子文件夹中的所有文件Sub SosuoFile(MyPath As String)Dim Myname As StringDim a As StringDim B() As StringDim dir_i() As StringDim i, idir As LongIf Right(MyPath, 1) Then MyPath = MyPath + Myname = Dir(MyPath, vbDirectory Or vbHidden Or vbNormal Or vbReadOnly)Do While Myname If Myname . And Myname . ThenIf (GetAttr(MyPath & Myname) And vbDirectory) = vbDirectory Then 如果找到的是目录idir = idir + 1ReDim Preserve dir_i(idir) As Stringdir_i(idir - 1) = MynameElseList1.AddItem MyPath & Myname 把找到的文件显示到列表框中End IfEnd IfMyname = Dir 搜索下一项LoopFor i = 0 To idir - 1Call SosuoFile(MyPath + dir_i(i)Next iReDim dir_i(0) As StringEnd Sub附: 在这里可以处理目录中的文件 Fn.Name 得到文件名 Fn.Size 得到文件大小 Fn.Path 得到文件路径 Fn.Type 得到文件类型 Fn.DateLastModified 得到文件最后的修改日期调用方法ShowFolderList (c:a) 查找目录Showfilelist (c:a) 查找文件SosuoFile (c:a) 查找目录+文件遍历文件夹Private Sub ShowFolderList(folderspec) Dim fs, f, f1, s, sf Dim hs, h, h1, hf Set fs = CreateObject(Scripting.FileSystemObject) Set f = fs.GetFolder(folderspec) Set sf = f.SubFolders For Each f1 In sf List1.AddItem folderspec & & f1.Name Call ShowFolderList(folderspec & & f1.Name) NextEnd Sub遍历某文件夹下的文件Private Sub Showfilelist(folderspec) Dim fs, f, f1, fc, s Set fs = CreateObject(Scripting.FileSystemObject) Set f = fs.GetFolder(folderspec) Set fc = f.Files For Each f1 In fc List1.AddItem f1.Name NextEnd Sub遍历某文件夹及子文件夹中的所有文件Sub SosuoFile(MyPath As String)Dim Myname As StringDim a As StringDim B() As StringDim dir_i() As StringDim i, idir As LongIf Right(MyPath, 1) Then MyPath = MyPath + Myname = Dir(MyPath, vbDirectory Or vbHidden Or vbNormal Or vbReadOnly)Do While Myname If Myname . And Myname . ThenIf (GetAttr(MyPath & Myname) And vbDirectory) = vbDirectory Then 如果找到的是目录idir = idir + 1ReDim Preserve dir_i(idir) As Stringdir_i(idir - 1) = MynameElseList1.AddItem MyPath & Myname 把找到的文件显示到列表框中End IfEnd IfMyname = Dir 搜索下一项LoopFor i = 0 To idir - 1Call SosuoFile(MyPath + dir_i(i)Next iReDim dir_i(0) As StringEnd Sub附: 在这里可以处理目录中的文件 Fn.Name 得到文件名 Fn.Size 得到文件大小 Fn.Path 得到文件路径 Fn.Type 得到文件类型 Fn.DateLastModified 得到文件最后的修改日期调用方法ShowFolderList (c:a) 查找目录Showfilelist (c:a) 查找文件SosuoFile (c:a) 查找目录+文件遍历文件夹Private Sub ShowFolderList(folderspec) Dim fs, f, f1, s, sf Dim hs, h, h1, hf Set fs = CreateObject(Scripting.FileSystemObject) Set f = fs.GetFolder(folderspec) Set sf = f.SubFolders For Each f1 In sf List1.AddItem folderspec & & f1.Name Call ShowFolderList(folderspec & & f1.Name) NextEnd Sub遍历某文件夹下的文件Private Sub Showfilelist(folderspec) Dim fs, f, f1, fc, s Set fs = CreateObject(Scripting.FileSystemObject) Set f = fs.GetFolder(folderspec) Set fc = f.Files For Each f1 In fc List1.AddItem f1.Name NextEnd Sub遍历某文件夹及子文件夹中的所有文件Sub SosuoFile(MyPath As String)Dim Myname As StringDim a As StringDim B() As StringDim dir_i() As StringDim i, idir As LongIf Right(MyPath, 1) Then MyPath = MyPath + Myname = Dir(MyPath, vbDirectory Or vbHidden Or vbNormal Or vbReadOnly)Do While Myname If Myname . And Myname . ThenIf (GetAttr(MyPath & Myname) And vbDirectory) = vbDirectory Then 如果找到的是目录idir = idir + 1ReDim Preserve dir_i(idir) As Stringdir_i(idir - 1) = MynameElseList1.AddItem MyPath & Myname 把找到的文件显示到列表框中End IfEnd IfMyname = Dir 搜索下一项LoopFor i = 0 To idir - 1Call SosuoFile(MyPath + dir_i(i)Next iReDim dir_i(0) As StringEnd Sub附: 在这里可以处理目录中的文件 Fn.Name 得到文件名 Fn.Size 得到文件大小 Fn.Path 得到文件路径 Fn.Type 得到文件类型 Fn.DateLastModified 得到文件最后的修改日期调用方法ShowFolderList (c:a) 查找目录Showfilelist (c:a) 查找文件SosuoFile (c:a) 查找目录+文件遍历文件夹Private Sub ShowFolderList(folderspec) Dim fs, f, f1, s, sf Dim hs, h, h1, hf Set fs = CreateObject(Scripting.FileSystemObject) Set f = fs.GetFolder(folderspec) Set sf = f.SubFolders For Each f1 In sf List1.AddItem folderspec & & f1.Name Call ShowFolderList(folderspec & & f1.Name) NextEnd Sub遍历某文件夹下的文件Private Sub Showfilelist(folderspec) Dim fs, f, f1, fc, s Set fs = CreateObject(Scripting.FileSystemObject) Set f = fs.GetFolder(folderspec) Set fc = f.Files For Each f1 In fc List1.AddItem f1.Name NextEnd Sub遍历某文件夹及子文件夹中的所有文件Sub SosuoFile(MyPath As String)Dim Myname As StringDim a As StringDim B() As StringDim dir_i() As StringDim i, idir As LongIf Right(MyPath, 1) Then MyPath = MyPath + Myname = Dir(MyPath, vbDirectory Or vbHidden Or vbNormal Or vbReadOnly)Do While Myname If Myname . And Myname . ThenIf (GetAttr(MyPath & Myname) And vbDirectory) = vbDirectory Then 如果找到的是目录idir = idir + 1ReDim Preserve dir_i(idir) As Stringdir_i(idir - 1) = MynameElseList1.AddItem MyPath & Myname 把找到的文件显示到列表框中End IfEnd IfMyname = Dir 搜索下一项LoopFor i = 0 To idir - 1Call SosuoFile(MyPath + dir_i(i)Next iReDim dir_i(0) As StringEnd Sub附: 在这里可以处理目录中的文件 Fn.Name 得到文件名 Fn.Size 得到文件大小 Fn.Path 得到文件路径 Fn.Type 得到文件类型 Fn.DateLastModified 得到文件最后的修改日期调用方法ShowFolderList (c:a) 查找目录Showfilelist (c:a) 查找文件SosuoFile (c:a) 查找目录+文件遍历文件夹Private Sub ShowFolderList(folderspec) Dim fs, f, f1, s, sf Dim hs, h, h1, hf Set fs = CreateObject(Scripting.FileSystemObject) Set f = fs.GetFolder(folderspec) Set sf = f.SubFolders For Each f1 In sf List1.AddItem folderspec & & f1.Name Call ShowFolderList(folderspec & & f1.Name) NextEnd Sub遍历某文件夹下的文件Private Sub Showfilelist(folderspec) Dim fs, f, f1, fc, s Set fs = CreateObject(Scripting.FileSystemObject) Set f = fs.GetFolder(folderspec) Set fc = f.Files For Each f1 In fc List1.AddItem f1.Name NextEnd Sub遍历某文件夹及子文件夹中的所有文件Sub SosuoFile(MyPath As String)Dim Myname As StringDim a As StringDim B() As StringDim dir_i() As StringDim i, idir As LongIf Right(MyPath, 1) Then MyPath = MyPath + Myname = Dir(MyPath, vbDirectory Or vbHidden Or vbNormal Or vbReadOnly)Do While Myname If Myname . And Myname . ThenIf (GetAttr(MyPath & Myname) And vbDirectory) = vbDirectory Then 如果找到的是目录idir = idir + 1ReDim Preserve dir_i(idir) As Stringdir_i(idir - 1) = MynameElseList1.AddItem MyPath & Myname 把找到的文件显示到列表框中End IfEnd IfMyname = Dir 搜索下一项LoopFor i = 0 To idir - 1Call SosuoFile(MyPath + dir_i(i)Next iReDim dir_i(0) As StringEnd Sub附: 在这里可以处理目录中的文件 Fn.Name 得到文件名 Fn.Size 得到文件大小 Fn.Path 得到文件路径 Fn.Type 得到文件类型 Fn.DateLastModified 得到文件最后的修改日期调用方法ShowFolderList (c:a) 查找目录Showfilelist (c:a) 查找文件SosuoFile (c:a) 查找目录+文件遍历文件夹Private Sub ShowFolderList(folderspec) Dim fs, f, f1, s, sf Dim hs, h, h1, hf Set fs = CreateObject(Scripting.FileSystemObject) Set f = fs.GetFolder(folderspec) Set sf = f.SubFolders For Each f1 In sf List1.AddItem folderspec & & f1.Name Call ShowFolderList(folderspec & & f1.Name) NextEnd Sub遍历某文件夹下的文件Private Sub Showfilelist(folderspec) Dim fs, f, f1, fc, s Set fs = CreateObject(Scripting.FileSystemObject) Set f = fs.GetFolder(folderspec) Set fc = f.Files For Each f1 In fc List1.AddItem f1.Name NextEnd Sub遍历某文件夹及子文件夹中的所有文件Sub SosuoFile(MyPath As String)Dim Myname As StringDim a As StringDim B() As StringDim dir_i() As StringDim i, idir As LongIf Right(MyPath, 1) Then MyPath = MyPath + Myname = Dir(MyPath, vbDirectory Or vbHidden Or vbNormal Or vbReadOnly)Do While Myname If Myname . And Myname . ThenIf (GetAttr(MyPath & Myname) And vbDirectory) = vbDirectory Then 如果找到的是目录idir = idir + 1ReDim Preserve dir_i(idir) As Stringdir_i(idir - 1) = MynameElseList1.AddItem MyPath & Myname 把找到的文件显示到列表框中End IfEnd IfMyname = Dir 搜索下一项LoopFor i = 0 To idir - 1Call SosuoFile(MyPath + dir_i(i)Next iReDim dir_i(0) As StringEnd Sub附: 在这里可以处理目录中的文件 Fn.Name 得到文件名 Fn.Size 得到文件大小 Fn.Path 得到文件路径 Fn.Type 得到文件类型 Fn.DateLastModified 得到文件最后的修改日期调用方法ShowFolderList (c:a) 查找目录Showfilelist (c:a) 查找文件SosuoFile (c:a) 查找目录+文件遍历文件夹Private Sub ShowFolderList(folderspec) Dim fs, f, f1, s, sf Dim hs, h, h1, hf Set fs = CreateObject(Scripting.FileSystemObject) Set f = fs.GetFolder(folderspec) Set sf = f.SubFolders For Each f1 In sf List1.AddItem folderspec & & f1.Name Call ShowFolderList(folderspec & & f1.Name) NextEnd Sub遍历某文件夹下的文件Private Sub Showfilelist(folderspec) Dim fs, f, f1, fc, s Set fs = CreateObject(Scripting.FileSystemObject) Set f = fs.GetFolder(folderspec) Set fc = f.Files For Each f1 In fc List1.AddItem f1.Name NextEnd Sub遍历某文件夹及子文件夹中的所有文件Sub SosuoFile(MyPath As String)Dim Myname As StringDim a As StringDim B() As StringDim dir_i() As StringDim i, idir As LongIf Right(MyPath, 1) Then MyPath = MyPath + Myname = Dir(MyPath, vbDirectory Or vbHidden Or vbNormal Or vbReadOnly)Do While Myname If Myname . And Myname . ThenIf (GetAttr(MyPath & Myname) And vbDirectory) = vbDirectory Then 如果找到的是目录idir = idir + 1ReDim Preserve dir_i(idir) As Stringdir_i(idir - 1) = MynameElseList1.AddItem MyPath & Myname 把找到的文件显示到列表框中End IfEnd IfMyname = Dir 搜索下一项LoopFor i = 0 To idir - 1Call SosuoFile(MyPath + dir_i(i)Next iReDim dir_i(0) As StringEnd Sub附: 在这里可以处理目录中的文件 Fn.Name 得到文件名 Fn.Size 得到文件大小 Fn.Path 得到文件路径 Fn.Type 得到文件类型 Fn.DateLastModified 得到文件最后的修改日期调用方法ShowFolderList (c:a) 查找目录Showfilelist (c:a) 查找文件SosuoFile (c:a) 查找目录+文件遍历文件夹Private Sub ShowFolderList(folderspec) Dim fs, f, f1, s, sf Dim hs, h, h1, hf Set fs = CreateObject(Scripting.FileSystemObject) Set f = fs.GetFolder(folderspec) Set sf = f.SubFolders For Each f1 In sf List1.AddItem folderspec & & f1.Name Call ShowFolderList(folderspec & & f1.Name) NextEnd Sub遍历某文件夹下的文件Private Sub Showfilelist(folderspec) Dim fs, f, f1, fc, s Set fs = CreateObject(Scripting.FileSystemObject) Set f = fs.GetFolder(folderspec) Set fc = f.Files For Each f1 In fc List1.AddItem f1.Name NextEnd Sub遍历某文件夹及子文件夹中的所有文件Sub SosuoFile(MyPath As String)Dim Myname As StringDim a As StringDim B() As StringDim dir_i() As StringDim i, idir As LongIf Right(MyPath, 1) Then MyPath = MyPath + Myname = Dir(MyPath, vbDirectory Or vbHidden Or vbNormal Or vbReadOnly)Do While Myname If Myname . And Myname . ThenIf (GetAttr(MyPath & Myname) And vbDirectory) = vbDirectory Then 如果找到的是目录idir = idir + 1ReDim Preserve dir_i(idir) As Stringdir_i(idir - 1) = MynameElseList1.AddItem MyPath & Myname 把找到的文件显示到列表框中End IfEnd IfMyname = Dir 搜索下一项LoopFor i = 0 To idir - 1Call SosuoFile(MyPath + dir_i(i)Next iReDim dir_i(0) As StringEnd Sub附: 在这里可以处理目录中的文件 Fn.Name 得到文件名 Fn.Size 得到文件大小 Fn.Path 得到文件路径 Fn.Type 得到文件类型 Fn.DateLastModified 得到文件最后的修改日期调用方法ShowFolderList (c:a) 查找目录Showfilelist (c:a) 查找文件SosuoFile (c:a) 查找目录+文件遍历文件夹Private Sub ShowFolderList(folderspec) Dim fs, f, f1, s, sf Dim hs, h, h1, hf Set fs = CreateObject(Scripting.FileSystemObject) Set f = fs.GetFolder(folderspec) Set sf = f.SubFolders For Each f1 In sf List1.AddItem folderspec & & f1.Name Call ShowFolderList(folderspec & & f1.Name) NextEnd Sub遍历某文件夹下的文件Private Sub Showfilelist(folderspec) Dim fs, f, f1, fc, s Set fs = CreateObject(Scripting.FileSystemObject) Set f = fs.GetFolder(folderspec) Set fc = f.Files For Each f1 In fc List1.AddItem f1.Name NextEnd Sub遍历某文件夹及子文件夹中的所有文件Sub SosuoFile(MyPath As String)Dim Myname As StringDim a As StringDim B() As StringDim dir_i() As StringDim i, idir As LongIf Right(MyPath, 1) Then MyPath = MyPath + Myname = Dir(MyPath, vbDirectory Or vbHidden Or vbNormal Or vbReadOnly)Do While Myname If Myname . And Myname . ThenIf (GetAttr(MyPath & Myname) And vbDirectory) = vbDirectory Then 如果找到的是目录idir = idir + 1ReDim Preserve dir_i(idir) As Stringdir_i(idir - 1) = MynameElseList1.AddItem MyPath & Myname 把找到的文件显示到列表框中End IfEnd IfMyname = Dir 搜索下一项LoopFor i = 0 To idir - 1Call SosuoFile(MyPath + dir_i(i)Next iReDim dir_i(0) As StringEnd Sub附: 在这里可以处理目录中的文件 Fn.Name 得到文件名 Fn.Size 得到文件大小 Fn.Path 得到文件路径 Fn.Type 得到文件类型 Fn.DateLastModified 得到文件最后的修改日期调用方法ShowFolderList (c:a) 查找目录Showfilelist (c:a) 查找文件SosuoFile (c:a) 查找目录+文件遍历文件夹Private Sub ShowFolderList(folderspec) Dim fs, f, f1, s, sf Dim hs, h, h1, hf Set fs = CreateObject(Scripting.FileSystemObject) Set f = fs.GetFolder(folderspec) Set sf = f.SubFolders For Each f1 In sf List1.AddItem folderspec & & f1.Name Call ShowFolderList(folderspec & & f1.Name) NextEnd Sub遍历某文件夹下的文件Private Sub Showfilelist(folderspec) Dim fs, f, f1, fc, s Set fs = CreateObject(Scripting.FileSystemObject) Set f = fs.GetFolder(folderspec) Set fc = f.Files For Each f1 In fc List1.AddItem f1.Name NextEnd Sub遍历某文件夹及子文件夹中的所有文件Sub SosuoFile(MyPath As String)Dim Myname As StringDim a As StringDim B() As StringDim dir_i() As StringDim i, idir As LongIf Right(MyPath, 1) Then MyPath = MyPath + Myname = Dir(MyPath, vbDirectory Or vbHidden Or vbNormal Or vbReadOnly)Do While Myname If Myname . And Myname . ThenIf (GetAttr(MyPath & Myname) And vbDirectory) = vbDirectory Then 如果找到的是目录idir = idir +
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2024年 第十一章 实验十二 传感器的简单使用说课稿 鲁科版选修3-2
- 传感器的基本误差和精度说课稿-2025-2026学年中职专业课-传感器检测技术-电气设备运行与控制-装备制造大类
- 专项法律委托代理服务合同8篇
- 2025劳动合同法律知识库
- 2025德坤劳动合同(普通劳务工)
- 益阳事业单位笔试真题2025
- 渐变工具和油漆桶工具说课稿-2025-2026学年中职专业课-图形图像处理-计算机类-电子与信息大类
- 2025股权质押借款合同范本
- 八年级生物上册 16.3《动物行为的研究》说课稿 (新版)北师大版
- 乌兰察布事业单位笔试真题2025
- 生产经营单位从业人员安全培训档案14张表
- 《三角形的面积》教学设计方案
- GB/T 14667.1-1993粉末冶金铁基结构材料第一部分烧结铁、烧结碳钢、烧结铜钢、烧结铜钼钢
- GA/T 1788.1-2021公安视频图像信息系统安全技术要求第1部分:通用要求
- FZ/T 60029-2021毛毯脱毛测试方法
- 质量月知识竞赛题库
- 状态-特质焦虑问卷STAI
- hsp运营高感训练家长手册
- 中药鉴定学习题集全
- 罐车司机培训试题含答案
- 110KV线路断路器控制回路
评论
0/150
提交评论