If fbd.ShowDialog = DialogResult.OK Then
Dim dirInfo As New DirectoryInfo(fbd.SelectedPath)
Dim files() As FileInfo = dirInfo.GetFiles("*.jpg")
Dim fInfo As FileInfo
Dim newPath As String
set newpath before this
For Each fInfo In files
File.Copy(fInfo.Name, newPath & "\\" & fInfo.Name)
Next fInfo
End If