
Display All the Subfolders Within a Folder Using VBscript
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 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,