How To List All Files In Folder And Sub-folders Use Excel VBA

The following Excel VBA code can help you to list all files in folder and sub-folders into a worksheet.

Final update: Please read this article: Excel Macro: List All Files in Folders and Subfolders

VBA Code

Sub ListAllFilesInAllFolders()

    Dim MyPath As String, MyFolderName As String, MyFileName As String, key As Variant
    Dim i As Integer, F As Boolean
    Dim objShell As Object, objFolder As Object, AllFolders As Object, AllFiles As Object
    Dim MySheet As Worksheet
    
    On Error Resume Next
    
    '************************
    'Select folder
    Set objShell = CreateObject("Shell.Application")
    Set objFolder = objShell.BrowseForFolder(0, "", 0, 0)
    If Not objFolder Is Nothing Then
        MyPath = objFolder.self.Path & "\"
    Else
        Exit Sub
       'MyPath = "G:\BackUp\"
    End If
    Set objFolder = Nothing
    Set objShell = Nothing
    
    '************************
    'List all folders
    
    Set AllFolders = CreateObject("Scripting.Dictionary")
    Set AllFiles = CreateObject("Scripting.Dictionary")
    AllFolders.Add (MyPath), ""
    i = 0
    Do While i < AllFolders.Count
        Key = AllFolders.keys
        MyFolderName = Dir(Key(i), vbDirectory)
        Do While MyFolderName <> ""
            If MyFolderName <> "." And MyFolderName <> ".." Then
                If (GetAttr(Key(i) & MyFolderName) And vbDirectory) = vbDirectory Then
                    AllFolders.Add (Key(i) & MyFolderName & "\"), ""
                End If
            End If
            MyFolderName = Dir
        Loop
        i = i + 1
    Loop
    
    'List all files
    For Each Key In AllFolders.keys
        MyFileName = Dir(Key & "*.*")
        'MyFileName = Dir(Key & "*.PDF")    'only PDF files
        Do While MyFileName <> ""
            AllFiles.Add (Key & MyFileName), ""
            MyFileName = Dir
        Loop
    Next
    
    '************************
    'List all files in Files sheet
    
    For Each MySheet In ThisWorkbook.Worksheets
        If MySheet.Name = "Files" Then
            Sheets("Files").Cells.Delete
            F = True
            Exit For
        Else
            F = False
        End If
    Next
    If Not F Then Sheets.Add.Name = "Files"

    'Sheets("Files").[A1].Resize(AllFolders.Count, 1) = WorksheetFunction.Transpose(AllFolders.keys)
    Sheets("Files").[A1].Resize(AllFiles.Count, 1) = WorksheetFunction.Transpose(AllFiles.keys)
    Set AllFolders = Nothing
    Set AllFiles = Nothing
End Sub

Cloumn A: Directory, Cloumn B: File Name

Line 49
Replace

AllFiles.Add (Key & MyFileName), ""

To

AllFiles.Add (MyFileName), Key

Line 69
Replace

Sheets("Files").[A1].Resize(AllFiles.Count, 1) = WorksheetFunction.Transpose(AllFiles.keys)

To

Sheets("Files").[A1].Resize(AllFiles.Count, 1) = WorksheetFunction.Transpose(AllFiles.Items)
Sheets("Files").[B1].Resize(AllFiles.Count, 1) = WorksheetFunction.Transpose(AllFiles.keys)

Others Useful Code

Get File Date

Do While MyFileName <> ""
    DateStamp = FileDateTime(key & MyFileName)
    AllFiles.Add (key & MyFileName), DateStamp
    MyFileName = Dir
Loop

Get File Size

Do While MyFileName <> ""
    MyFileSize = FileLen(key & MyFileName)
    AllFiles.Add (MyFileName), MyFileSize
    MyFileName = Dir
Loop

How to Use This Macro

To use this macro, you can copy and paste it into a standard module:

  1. Activate the Visual Basic Editor by pressing ALT+F11.
  2. Right-click the project/workbook name in the Project window.
  3. Choose Insert -> Module.
    Insert Module
  4. Type or paste the code in the newly created module.
  5. Close the VBE widow.
  6. Select the range which you want to remove duplicate values.
  7. On the Developer tab, in the Code group, click Macros.
  8. Select the macro which you want to run, in this case we select GetUniqueValues, then click Run.

Leave a comment

Your email address will not be published. Required fields are marked *

Format your code: <pre><code class="language-vba">place your code here</code></pre>

38 comments
  1. BA
    Baudolino

    Hi, I've succesfully applied your code. I also made an adjustment to add entries from the next empty cell. Thus I'm able to create a list from different directories. Since I'm a total dummy where it comes to understanding VBA, I thought I'd use an expression in stead of a fixed value. But I seem to refer in a wrong way, because it doesn't work 🙁
    Could you help me with this? Most grateful if you would!
    I made an adjustment in line 69 and created this prose:
    entryA = "A" & (Range("A1").End(xlDown).Row + 1)
    entryB = "B" & (Range("B1").End(xlDown).Row + 1)
    Sheets("Inventarisatie").[entryA].Resize(AllFiles.Count, 1) = WorksheetFunction.Transpose(AllFiles.keys)
    Sheets("Inventarisatie").[entryB].Resize(AllFiles.Count, 1) = WorksheetFunction.Transpose(AllFiles.Items)

    • BA
      Baudolino

      @Baudolino I managed to solve the problem! I created the following lines:

      Sheets("Inventarisatie").Range(entryA).Resize(AllFiles.Count, 1) = WorksheetFunction.Transpose(AllFiles.keys)
      Sheets("Inventarisatie").Range(entryB).Resize(AllFiles.Count, 1) = WorksheetFunction.Transpose(AllFiles.Items)

      Thanks again for this code. My modification has made it possible to add listings from different directories into one listing

  2. DE
    Denisha

    Yup, it’s a dark actuality for anyone that wishes to keep
    up with their Tv reveals from house in a brand new
    nation. Nearly all of Tv network sites and paid subscription services either completely block
    the content from being viewed outdoors of the United States, or the quantity of content material is proscribed.
    I moved from the U.S. Panama virtually four years in the past, and
    during my time here I'd say I have grow to be an knowledgeable in getting around anything that retains me
    from watching the newest episodes of Scandal.
    In Panama, I simply have essentially the most primary cable package deal as a result of I
    want being in a position to observe Tv reveals and films on demand using services like Netflix,
    Hulu, or Amazon. Also, most major networks like Fox, ABC, NBC, and many others.
    upload all of their Tv exhibits on their web sites, and people are viewable without cost.
    It creates a more safe and personal web connection.

  3. MA
    Matt

    Very Helpfull. Thank you.

More comments