|
-
Jan 2nd, 2002, 10:51 AM
#1
Thread Starter
New Member
How do I find all the folders and subfolders without using the filesystem object ?
I am trying to make my own explorer using the Treeview control.
Does anyone know of examples from the net ?
I can find all the folder names by the following code:
"
Dim numOfFolders
numOfFolders = dirSelect.ListCount
Dim folderCount
Dim folderName
for folderCount = 0 to numOfFolders - 1
folderName = dirSelect.List(folderCount)
Next folderCount
"
But how do I find out all the subfolder names and all the files that belong to these foldes ???
I CANNOT USE the filesystem object. Is there any other way ??
Thanks for your help.
Predator.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|