You can use VBscript's
Filesystemobject to list all the subfolders in a folder. Create a text file called
showfolderlist.vbs and enter the following code:
showfolderlist <dirextory that you want to list>
eg showfolderlist "c:\windows"
The
Showfolderlist procedure uses the
Filesystemobject to traverse through all the subdirectories and display them:
Sub ShowFolderList(folderspec)
Dim fs, f, f1, fc, s
Set fs = CreateObject("Scripting.FileSystemObject")
Set f = fs.GetFolder(folderspec)
Set fc = f.SubFolders
For Each f1 in fc
s = s & f1.name
s = s & vbCrLf
Next
MsgBox s
End Sub
To run the program, just double-click on the
showfolderlist.vbs file.