Adding a new field to the results of my "list the folders inside a specific folder" code

scotthannaford1973

Board Regular
Joined
Sep 27, 2017
Messages
115
Office Version
  1. 2010
Platform
  1. Windows
I've created some code (thanks to Mr Excel) that will let a user create a list of all of the sub-folders (down three levels, I think) within a folder they specify. The end results look like this, but I'd like to add a new field that counts all of the files in each of the folders.

1718375741352.png



the two main bits of code are as below - can anyone please advise how I can add a new field to count the files?

Sub FolderNames()
Application.ScreenUpdating = False
Dim xPath As String
Dim xWs As Worksheet
Dim fso As Object, j As Long, folder1 As Object
With Application.FileDialog(msoFileDialogFolderPicker)
.Title = "Choose the folder"
.Show
End With
On Error Resume Next
xPath = Application.FileDialog(msoFileDialogFolderPicker).SelectedItems(1) & "\"
Application.Sheets("Folders").Activate

Set xWs = Application.ActiveSheet
xWs.Cells(1, 1).Value = xPath
xWs.Cells(2, 1).Resize(1, 5).Value = Array("Path", "Dir", "Name", "Date Created", "Date Last Modified")
Set fso = CreateObject("Scripting.FileSystemObject")
Set folder1 = fso.getFolder(xPath)
getSubFolder folder1
xWs.Cells(2, 1).Resize(1, 5).Interior.Color = 65535
xWs.Cells(2, 1).Resize(1, 5).EntireColumn.AutoFit
Application.ScreenUpdating = True
End Sub

-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Sub getSubFolder(ByRef prntfld As Object)
Dim SubFolder As Object
Dim subfld As Object
Dim xRow As Long
For Each SubFolder In prntfld.SubFolders
xRow = Range("A1").End(xlDown).Row + 1
Cells(xRow, 1).Resize(1, 5).Value = Array(SubFolder.Path, Left(SubFolder.Path, InStrRev(SubFolder.Path, "\")), SubFolder.Name, SubFolder.DateCreated, SubFolder.DateLastModified)
Next SubFolder
For Each subfld In prntfld.SubFolders
getSubFolder subfld
Next subfld

End Sub
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Have a try with these tweaks:
VBA Code:
Option Explicit
Sub FolderNames()
    Dim xPath As String
    Dim xWs   As Worksheet
    Dim fso   As Object, j As Long, folder1 As Object
    Application.ScreenUpdating = False
    With Application.FileDialog(msoFileDialogFolderPicker)
        .Title = "Choose the folder"
        .Show
    End With
    On Error Resume Next
    xPath = Application.FileDialog(msoFileDialogFolderPicker).SelectedItems(1) & "\"
    Application.Sheets("Folders").Activate
    Set xWs = Application.ActiveSheet
    xWs.Cells(1, 1).Value = xPath
    xWs.Cells(2, 1).Resize(1, 6).Value = Array("Path", "Dir", "Name", "Date Created", "Date Last Modified", "N.Files") '<- changed adding column and title
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set folder1 = fso.getFolder(xPath)
    GetSubFolder folder1
    xWs.Cells(2, 1).Resize(1, 6).Interior.Color = 65535 '<- changed adding column
    xWs.Cells(2, 1).Resize(1, 6).EntireColumn.AutoFit '<- changed adding column
    Application.ScreenUpdating = True
    MsgBox "Done!"
End Sub

Sub GetSubFolder(ByRef PrntFld As Object)
    Dim SubFolder As Object
    Dim SubFld As Object
    Dim xRow  As Long
    Dim CntFiles As Long                          '<- added
    Dim strFile As String                         '<- added
    For Each SubFolder In PrntFld.SubFolders
        strFile = Dir(SubFolder & "\*.*")         '<- added loop to count all files in folders
        Do While strFile <> ""                    '<- added
            CntFiles = CntFiles + 1               '<- added
            strFile = Dir()                       '<- added
        Loop                                      '<- added
        xRow = Range("A1").End(xlDown).Row + 1
        Cells(xRow, 1).Resize(1, 6).Value = Array(SubFolder.Path, Left(SubFolder.Path, InStrRev(SubFolder.Path, "\")), SubFolder.Name, SubFolder.DateCreated, SubFolder.DateLastModified, CntFiles) '<- changed adding column and counter
        CntFiles = 0                              '<- added reset counter for next folder
    Next SubFolder
    For Each SubFld In PrntFld.SubFolders
        GetSubFolder SubFld
    Next SubFld
End Sub
 
Upvote 0
list of all of the sub-folders (down three levels, I think) within a folder they specify. The end results look like this, but I'd like to add a new field that counts all of the files in each of the folders.

It goes down all levels. To include a files count of each subfolder:

VBA Code:
        Cells(xRow, 1).Resize(1, 6).Value = Array(SubFolder.Path, Left(SubFolder.Path, InStrRev(SubFolder.Path, "\")), SubFolder.Name, SubFolder.DateCreated, SubFolder.DateLastModified, SubFolder.Files.Count)
and change all the other Resize(1, 5) to Resize(1, 6).
 
Upvote 0

Forum statistics

Threads
1,223,886
Messages
6,175,198
Members
452,616
Latest member
intern444

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