Get Files In Dir
Get the files in a dir:
Dim files() As String = System.IO.Directory.GetFiles("c:/")
For Each file In files
msgbox(file)
Next
Get the files in a dir:
Dim files() As String = System.IO.Directory.GetFiles("c:/")
For Each file In files
msgbox(file)
Next
Post a comment