So here it is.

1º Add a listview, and a listimage.
then add code

vb.net Code:
  1. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  2.         Dim files() As String
  3.         files = System.IO.Directory.GetFiles("C:\folder", "*.jpg", IO.SearchOption.TopDirectoryOnly)
  4.         Dim i = 0
  5.         For Each fname As String In files
  6.             Debug.Print(fname)
  7.             Dim bmp As Bitmap = New Bitmap(fname)
  8.             ImageList1.Images.Add(fname, bmp)
  9.             ListView1.Items.Add(fname, i)
  10.             i = i + 1
  11.         Next
  12.     End Sub