I have some code that goes out and looks in a directory for a path that I give it. The path contains a Wildcard so that I can get all the paths like it. I need to be able to know what the path names are that are found. Currently my code looks like:
Dim strSourceFilePath As String
strSourceFilePath = "C:\testing\test*.txt"
If Dir(strSourceFilePath, vbNormal) = "" Then
MsgBox "Not Found"
Else:
'Need the paths found here!
MsgBox "Found"
End If
What I have works, however I need to know what files are found that meet the "c:\testing\test*.txt" Criteria.
In that dir I might have the following paths:
c:\testing\test1-17-2001.txt
c:\testing\test1-16-2001.txt
c:\testing\test1-15-2001.txt
I need a list of what's there. HELP!


Reply With Quote