Hi Dennis
some code to start with looping through subdirectories (add the file
size, etc.)
Option Explicit
Sub beginhere()
GetDirectories ("D:\")
End Sub
Sub GetDirectories(thisdir As String)
Dim fso As New FileSystemObject, flders
Dim fldr As Folder, fl As File
Dim ws As New Worksheet, rw As Integer
Set fso = New FileSystemObject
Set flders = fso.GetFolder(thisdir)
For Each fldr In flders.SubFolders
GetDirectories CStr(fldr)
Next
rw = 1
Set ws = Worksheets.Add
ws.Cells(rw, 1) = "folder:" & CStr(thisdir)
For Each fl In flders.Files
rw = rw + 1
ws.Cells(rw, 2) = CStr(fl.Name)
Next
End Sub