Dalam aplikasi Anda, Anda akan ingin menggunakan "OpenFileDialog" sehingga pengguna dapat memilih file. Lihat contoh di bawah ini:
Dim ofd As New OpenFileDialog
ofd.Filter = "*.png|PNG|*.jpg|JPEG" 'Add other exensions you except here
ofd.Title = "Choose your folder"
'ofd.InitialDirectory = "c:\SomeFolder..." 'If you want an initial folder that is shown, otherwise it will use the last folder used by this appliaction in an OFD.
If ofd.ShowDialog = Windows.Forms.DialogResult.OK Then
'Something = ofd.FileName 'Do something with the result
End If
Kemudian simpan hasil ofd.FileName
di meja Anda. Ini akan menjadi path lengkap dan nama file yang mereka pilih.