Listing Sub Folders

yinkajewole

Active Member
Joined
Nov 23, 2018
Messages
281
I have this code this list the files of a folder into a ListBox called "Filelist". how can i modify the code to include the files in its subfolders?
Code:
Function FileArray(Path As String)    Dim Name As String, Counter As Integer, Files() As String
    Name = Dir("C:\Users\USER\Documents\*.xls", vbNormal)
    Counter = 0
    Do While Name > ""
        If Name > "." And Name > ".." Then
            ReDim Preserve Files(Counter)
            Files(Counter) = Name
            Counter = Counter + 1
        End If
        Name = Dir
    Loop
    FileArray = Files()
End Function




Private Sub UserForm_Initialize()
    Dim Files As Variant, NewDocument As Variant, Folder As String
    Folder = "C:\Users\USER\Documents\"  ' ENTER PATH HERE
    Files = FileArray(Folder)
    For Each NewDocument In Files
       FileList.AddItem NewDocument 'ASSUMING U HAVE A LISTBOX FileList IN THE FORM
    Next
End Sub
 
one more thing, please...
i have a code that only display the files and not with subfolders, hence I need the code that if i should check a checkbox it should list the files and subfolder files inside my listbox and if i uncheck it, it should list the files without the subfolder files...
 
Upvote 0

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
How about
Code:
Private Sub CheckBox1_Click()
   If Me.CheckBox1 Then
      Me.FileList.ColumnWidths = "500;0"
   Else
      Me.FileList.ColumnWidths = "0;500"
   End If
End Sub
Change the 500 to any number such that you can see the entire path/file name.
 
Last edited:
Upvote 0
How about
Code:
Private Sub CheckBox1_Click()
   If Me.CheckBox1 Then
      Me.FileList.ColumnWidths = "500;0"
   Else
      Me.FileList.ColumnWidths = "0;500"
   End If
End Sub
Change the 500 to any number such that you can see the entire path/file name.

i'm not with my pc at the moment, so i'm yet to test the code. i may get back to you as soon as i test it
 
Upvote 0
please, can you do me a favour,
i have a textbox that i want it to search the files in the listbox, and i want to search letters at any position. eg if i should type "ren", it should bring results of "apprentice, render, children, church renumeration"
 
Upvote 0
As this is now a completely different question, you will need to start a new thread for it.
Thanks
 
Upvote 0
How about
Code:
Private Sub CheckBox1_Click()
   If Me.CheckBox1 Then
      Me.FileList.ColumnWidths = "500;0"
   Else
      Me.FileList.ColumnWidths = "0;500"
   End If
End Sub
Change the 500 to any number such that you can see the entire path/file name.

i'm sorry, you did not get me well, I did not mean to expand the file list box.
what i mean was that, my first post in this thread contain the code that will display the files in a folder, while your code will display even the files in subfolders. so i like to have a checkbox that when i click the checkbox, the file list box will display the files using your code, while if i uncheck it, it will display the files using my own code.
i hope you understand me better?
 
Upvote 0
Please, did you get this?
i'm sorry, you did not get me well, I did not mean to expand the file list box.
what i mean was that, my first post in this thread contain the code that will display the files in a folder, while your code will display even the files in subfolders. so i like to have a checkbox that when i click the checkbox, the file list box will display the files using your code, while if i uncheck it, it will display the files using my own code.
i hope you understand me better?
 
Upvote 0
For switching folders try
Code:
[COLOR=#ff0000]Dim FSO As Object
Dim StartFldr As Object
Dim StartPth As String[/COLOR]

Private Sub CheckBox1_Click()
   Me.FileList.Clear
   Call RecursiveFolder(FSO, StartFldr, Me.CheckBox1.Value)
End Sub

Private Sub UserForm_Initialize()
   
   StartPth = "C:\Mrexcel"
   Set FSO = CreateObject("Scripting.FileSystemObject")
   Set StartFldr = FSO.getFolder(StartPth)
   Call RecursiveFolder(FSO, StartFldr, False)
   Me.FileList.ColumnWidths = "0;200"
End Sub
Sub RecursiveFolder(FSO As Object, Fldr As Object, IncludeSubFolders As Boolean)
   Dim FldrFile As Object, SubFldr As Object
   
   For Each FldrFile In Fldr.Files
      If FSO.GetExtensionName(FldrFile) Like "xls" Then
         With Me.FileList
            .AddItem FldrFile
            .List(.ListCount - 1, 1) = FldrFile.Name
         End With
      End If
   Next FldrFile
   
   If IncludeSubFolders Then
      For Each SubFldr In Fldr.subfolders
         Call RecursiveFolder(FSO, SubFldr, True)
      Next SubFldr
   End If
End Sub
With the lines in red at the very top of the module
 
Upvote 0

Forum statistics

Threads
1,216,069
Messages
6,128,599
Members
449,460
Latest member
jgharbawi

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