Does anyone know how to write a procedure that will loop throught all folders and files, if a user enters a parent folder location
This is what I have so far, I can only loop through the top folders. Each parent folders will have a different structure.
<CODE>
Dim currDir as New DirectoryInfo(me.textbox1.text)
Dim di as directoryInfo
For Each di in currDir.GetDirectories
MsgBox di.full.name
Next
</CODE>
This is what I have so far, I can only loop through the top folders. Each parent folders will have a different structure.
<CODE>
Dim currDir as New DirectoryInfo(me.textbox1.text)
Dim di as directoryInfo
For Each di in currDir.GetDirectories
MsgBox di.full.name
Next
</CODE>