OpenFileDialog openFileDialog1 = new OpenFileDialog();
// Allow the user to select multiple images.
openFileDialog1.Multiselect =
true;
openFileDialog1.Title =
"My Image Browser";
DialogResult dr = openFileDialog1.ShowDialog();
string[] fileNames = openFileDialog1.FileNames;
Please mark the post as answer if it is helpfull to you because it boosts the members to answer more and more.