【发布时间】:2012-12-24 02:52:19
【问题描述】:
我通过单个文件的循环脚本工作正常,但我现在需要它来查看/查找多个目录。我被卡住了……
事情发生的顺序:
- 提示用户选择他们需要的根目录
- 我需要脚本来查找该根目录中的所有文件夹
- 如果脚本找到一个,它会打开第一个(所有文件夹,因此没有针对文件夹的特定搜索过滤器)
- 打开后,我的脚本将遍历文件夹中的所有文件并执行它需要执行的操作
- 完成后,它会关闭文件、关闭目录并移至下一个目录,等等。
- 循环直到所有文件夹都被打开/扫描
这就是我所拥有的,它不起作用,我知道是错误的:
MsgBox "Please choose the folder."
Application.DisplayAlerts = False
With Application.FileDialog(msoFileDialogFolderPicker)
.InitialFileName = "\\blah\test\"
.AllowMultiSelect = False
If .Show <> -1 Then MsgBox "No folder selected! Exiting script.": Exit Sub
CSRootDir = .SelectedItems(1)
End With
folderPath = Dir(CSRootDir, "\*")
Do While Len(folderPath) > 0
Debug.Print folderPath
fileName = Dir(folderPath & "*.xls")
If folderPath <> "False" Then
Do While fileName <> ""
Application.ScreenUpdating = False
Set wbkCS = Workbooks.Open(folderPath & fileName)
--file loop scripts here
Loop 'back to the Do
Loop 'back to the Do
最终代码。它循环遍历每个子目录中的所有子目录和文件。
Dim FSO As Object, fld As Object, Fil As Object
Dim fsoFile As Object
Dim fsoFol As Object
Dim fileName As String
MsgBox "Please choose the folder."
Application.DisplayAlerts = False
With Application.FileDialog(msoFileDialogFolderPicker)
.InitialFileName = "\\blah\test\"
.AllowMultiSelect = False
If .Show <> -1 Then MsgBox "No folder selected! Exiting script.": Exit Sub
folderPath = .SelectedItems(1)
End With
If Right(folderPath, 1) <> "\" Then folderPath = folderPath + "\"
Set FSO = CreateObject("Scripting.FileSystemObject")
Set fld = FSO.getfolder(folderPath)
If FSO.folderExists(fld) Then
For Each fsoFol In FSO.getfolder(folderPath).subfolders
For Each fsoFile In fsoFol.Files
If Mid(fsoFile.Name, InStrRev(fsoFile.Name, ".") + 1) = "xls" Then
fileName = fsoFile.Name
Application.ScreenUpdating = False
Set wbkCS = Workbooks.Open(fsoFile.Path)
'My file handling code
End If
Next
Next
End If
【问题讨论】:
-
我会坚持使用
Dir而不是FSO,因为它需要通配符来阻止冗长的文件类型检查来处理非 Excel 文件。见stackoverflow.com/questions/9827715/get-list-of-subdirs-in-vba