VBA function to retreive the names of all subfolders within a given folder

A

Anthony

How do I write a
VBA function to retreive the names of all subfolders within a given folder?

thx
 
D

Douglas J. Steele

Dim strFolder As String
Dim strSubfolder As String

strFolder = "C:\MyFolder\"
strSubfolder = Dir(strFolder, vbDirectory)
Do While Len(strSubfolder) > 0
If strSubfolder <> "." And strSubfolder <> ".." Then
Debug.Print strFolder & strSubfolder
End If
strSubfolder = Dir()
Loop
 
A

Anthony

Excellent!

ty

Douglas J. Steele said:
Dim strFolder As String
Dim strSubfolder As String

strFolder = "C:\MyFolder\"
strSubfolder = Dir(strFolder, vbDirectory)
Do While Len(strSubfolder) > 0
If strSubfolder <> "." And strSubfolder <> ".." Then
Debug.Print strFolder & strSubfolder
End If
strSubfolder = Dir()
Loop
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top