- Mar 1, 2000
- 30,890
- 5,001
- 126
Right now I have the following code:
but I'd like to apply more "filters" so I can pull up more than just .pdf files.
Suggestions?
Thanks in advance.
Code:
Dim di As New DirectoryInfo(SourceFolderPath.Text)
Dim Filter = "*.pdf"
Dim fiArr As FileInfo() = di.GetFiles(Filter)
but I'd like to apply more "filters" so I can pull up more than just .pdf files.
Suggestions?
Thanks in advance.