List folders?

handysmurf

Board Regular
Joined
Jan 17, 2015
Messages
87
Office Version
  1. 365
Platform
  1. Windows
How can I modify this code to list the folders within a directory? I tried ... unsuccessfully

Code:
Sub ListAllFile()




    Dim objFSO As Object
    Dim objFolder As Object
    Dim objFile As Object
    Dim ws As Worksheet
    Dim sPath As String
    Dim lrA As Long
    Dim lrB As Long




    Set objFSO = CreateObject("Scripting.FileSystemObject")
    Set ws = Worksheets.Add




    'Get the folder object associated with the directory
    sPath = InputBox("What is the full Path to Search?")
    Set objFolder = objFSO.GetFolder(sPath)
    ws.Cells(1, 1).Value = "The files found in " & objFolder.Name & " are:"
    ws.Cells(1, 2).Value = "The files found have modified dates:"
    ws.Cells(1, 3).Value = "The file Size is:"




    'Loop through the Files collection
    For Each objFile In objFolder.Files
    'If objFile.Name Like "*.pdf" Then
        lrA = Range("A" & Rows.Count).End(xlUp).Row
        lrB = Range("B" & Rows.Count).End(xlUp).Row
        ws.Range("A" & lrA + 1).Value = objFile.Name
        ws.Range("B" & lrB + 1).Value = objFile.DateLastModified
        ws.Range("C" & lrB + 1).Value = objFile.Size
    'End If
    Next
    'ws.Cells(2, 1).Delete
    'Clean up!
    Set objFolder = Nothing
    Set objFile = Nothing
    Set objFSO = Nothing




End Sub

TIA!
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Can you elaborate on what was not successful? Also, when your code did not succeed, what was the value of sPath?
 
Upvote 0
Oh I'm completely clueless, I just changed some of the places where it says file to folder. Not surprised I couldn't figure it out. I can recreate it if you like but I've already deleted the attempted to modify code.
 
Upvote 0
What happens when you run the code you posted?
 
Upvote 0
it lists the files within a directory but not subdirectories (folders)
 
Upvote 0
it lists the files within a directory but not subdirectories (folders)
The code you posted lists files within a folder, not folders within a folder. Try searching this site and/or google for code that lists subfolders within a specified folder.
 
Upvote 0

Forum statistics

Threads
1,214,551
Messages
6,120,156
Members
448,948
Latest member
spamiki

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