Contact Info

Crumbtrail

ActiveXperts.com » Administration » Scripts » Adsi

Enumerate Subfolders Using Recursion in Windows

You can use any of the VBScript programs below in ActiveXperts Network Monitor. Click here for an explanation about how to include scripts in ActiveXperts Network Monitor.

Enumerate Subfolders Using Recursion in Windows using VBScript, WMI and LDAP

Example(s)

Set FSO = CreateObject("Scripting.FileSystemObject")
ShowSubfolders FSO.GetFolder("C:\Scripts")

Sub ShowSubFolders(Folder)
    For Each Subfolder in Folder.SubFolders
        Wscript.Echo Subfolder.Path
        ShowSubFolders Subfolder
    Next
End Sub