Macro help: List all Excel files in folder & subfolder

DavidH56

New Member
Joined
Jul 29, 2011
Messages
33
Hi,

I modifed the file listing macro on p. 119 of the VBA and Macros: Microsoft Excel 2010 book to list all Excel files instead of jpg files. I changed the folder name to the name of one of my network folders and I changed the file type wild card to *.xl* to pick up all Excel files.

The macro returns a list of all of the files in the main folder, but doesn't list the files in subfolders. Hopefully someone can show me where I'm going wrong, my code is below.

Thanks for the help!

David


Sub FindExcelFilesInAFolder()
' New method for Excel 2007/2010
' You need this macro, plus the following macro
' Page 119-120

Dim fso As Object
Dim strName As String
Dim strArr(1 To 1048576, 1 To 1) As String, i As Long

' Enter the folder name here
Const strDir As String = "T:\finance1\2012\2012 Month End Close\03 March\"

Let strName = Dir$(strDir & "*.xls*")
Do While strName <> vbNullString
Let i = i + 1
Let strArr(i, 1) = strDir & strName
Let strName = Dir$()
Loop
Set fso = CreateObject("Scripting.FileSystemObject")
Call recurseSubFolders(fso.GetFolder(strDir), strArr(), i)
Set fso = Nothing
If i > 0 Then
Range("A1").Resize(i).Value = strArr
End If

' Next, loop through all found files
' and break into path and filename
FinalRow = Cells(Rows.Count, 1).End(xlUp).Row
For i = 1 To FinalRow
ThisEntry = Cells(i, 1)
For j = Len(ThisEntry) To 1 Step -1
If Mid(ThisEntry, j, 1) = Application.PathSeparator Then
Cells(i, 2) = Left(ThisEntry, j)
Cells(i, 3) = Mid(ThisEntry, j + 1)
Exit For
End If
Next j
Next i

End Sub


Private Sub recurseSubFolders(ByRef Folder As Object, _
ByRef strArr() As String, _
ByRef i As Long)
Dim SubFolder As Object
Dim strName As String
For Each SubFolder In Folder.SubFolders
Let strName = Dir$(SubFolder.Path & "*.xls*")
Do While strName <> vbNullString
Let i = i + 1
Let strArr(i, 1) = SubFolder.Path & strName
Let strName = Dir$()
Loop
Call recurseSubFolders(SubFolder, strArr(), i)
Next
End Sub
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Hi David,

It looks like you need to add a backslash to this line in the recurseSubFolders Sub.

Let strName = Dir$(SubFolder.Path & "\*.xls*")
 
Upvote 0
Thanks Jerry,

Adding the backslash helped. Now I'm getting a list of all of the files in the subfolders, when before I was only seeing the files in the main folder. The data looks correct, but the final backslash seperating the bottom-level folder and the file name isnt' showing up. Here's an example:

What I get T:\finance1\2012\2012 Month End Close\03 March\Day 5 ReviewBS.xls

Correct T:\finance1\2012\2012 Month End Close\03 March\Day 5 Review\BS.xls


I would have thought adding the backslash you suggested would correct this; any thoughts?

Thanks,

David
 
Last edited:
Upvote 0
David, It should work with one additional fix.

Code:
Let strArr(i, 1) = SubFolder.Path [COLOR="#FF0000"][B]& "\" &[/B][/COLOR] strName
 
Upvote 0

Forum statistics

Threads
1,214,944
Messages
6,122,387
Members
449,080
Latest member
Armadillos

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top