用openFileDialog选择多个文件

OpenFileDialog   dlg   =   new   OpenFileDialog();
dlg.Multiselect   =   true;

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

你可能感兴趣的:(String)