How to List the names of the subfolders present in the folder (path of folder is given in the textbo

  • Thread starter Thread starter divya
  • Start date Start date
D

divya

Can any body help me with the code to find the names of the subfolders
present in the Folder whose path the user enters in the textbox.
When the user enters the path in the textbox , I want to display in a
LIST BOX the names of all the subfolders present in that folder . File
search returns the names of files in tht folder .. How do I get the
names of the sub folders in that folder?? Please let me know...

Cheers!!!
Divya
 
Divya:

I have used the shell command to get the list of folders...
e.g:

dim z as string
dim x as variant

z = "dir c:\mydir /a:d /b /s>dirs.txt"
x = shell(z)

that gives me all the subfolders from c:\mydir in the text file
dirs.txt along with the entire path. (This text file is created under
c:\mydir)

Another cool way to do it is :
http://www.thescripts.com/forum/thread459690.html

refer to the second-last post on this thread...that also does it.

It uses the Dir function of VB recursively.

HTH
-Satish
 
See Excel Help for Dir Function example! You'll find there the very answre to
your question!

' Display the names in C:\ that represent directories.
MyPath = "c:\" ' Set the path.
MyName = Dir(MyPath, vbDirectory) ' Retrieve the first entry.
Do While MyName <> "" ' Start the loop.
' Ignore the current directory and the encompassing directory.
If MyName <> "." And MyName <> ".." Then
' Use bitwise comparison to make sure MyName is a directory.
If (GetAttr(MyPath & MyName) And vbDirectory) = vbDirectory Then
Debug.Print MyName ' Display entry only if it
End If ' it represents a directory.
End If
MyName = Dir ' Get next entry.
Loop

Regards,
Stefi

„divya†ezt írta:
 

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

Back
Top