Dim di As New IO.DirectoryInfo("c:\")
Dim diar1 As IO.FileInfo() = di.GetFiles("*.jpg")
How can i use multiple filter to retrieve list of files in directory.
i tried some examples for troubleshooting
("*.jpg|*.png")
("*.jpg,*.png")
But its only filtering one type of file. i need your help about that.