OpenFileDialog dlg = new OpenFileDialog(); dlg.Multiselect = true; if (dlg.ShowDialog() == DialogResult.OK) { foreach(string s in dlg.FileNames) { MessageBox.Show(s); } }