vote up 1 vote down star

What is the simplest way in VB6 to loop through all the files in a specified folder directory and get their names?

flag

75% accept rate

2 Answers

vote up 5 vote down check
sFilename = Dir(sFoldername)

Do While sFilename > ""

  debug.print sFilename 
  sFilename = Dir()

Loop
link|flag
Damn, beat me to it :P Have an MSDN article for reference: msdn.microsoft.com/en-us/library/… – Peter C. Nov 15 '08 at 0:42
vote up 1 vote down

DJ's solution is simple and effective, just throwing out another one in case you need a little more functionality that the FileSystemObject can provide (requires a reference to the Microsoft Scripting Runtime).

Dim fso As New FileSystemObject
Dim fol As Folder
Dim i As Integer

Set fol = fso.GetFolder("C:\")
For i = 0 To fol.Files.Count
    Debug.Print fol.Files(i).Name
Next i
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.