2009-08-21 8 views
23

मैं OpenFileDialog के साथ FileNames का उपयोग करके FileName के बजाय कई फ़ाइलों को एक साथ खोलने की कोशिश कर रहा हूं। लेकिन मैं इसे पूरा करने के तरीके पर कहीं भी कोई उदाहरण नहीं देख सकता, एमएसडीएन पर भी नहीं। जहां तक ​​मैं कह सकता हूं - इसमें कोई दस्तावेज नहीं है। क्या किसी ने इससे पहले किया है?एकाधिक फ़ाइलों को खोलना (ओपनफाइलडियलॉग, सी #)

उत्तर

58

आपको OpenFileDialog.Multiselect संपत्ति मूल्य को सत्य पर सेट करना होगा, और उसके बाद OpenFileDialog.FileNames संपत्ति का उपयोग करना होगा।

चेक इस नमूने

private void Form1_Load(object sender, EventArgs e) 
{ 
    InitializeOpenFileDialog(); 
} 

private void InitializeOpenFileDialog() 
{ 
    // Set the file dialog to filter for graphics files. 
    this.openFileDialog1.Filter = 
     "Images (*.BMP;*.JPG;*.GIF)|*.BMP;*.JPG;*.GIF|" + 
     "All files (*.*)|*.*"; 

    // Allow the user to select multiple images. 
    this.openFileDialog1.Multiselect = true; 
    //     ^^^^^^^

    this.openFileDialog1.Title = "My Image Browser"; 
} 

private void selectFilesButton_Click(object sender, EventArgs e) 
{ 
    DialogResult dr = this.openFileDialog1.ShowDialog(); 
    if (dr == System.Windows.Forms.DialogResult.OK) 
    { 
     // Read the files 
     foreach (String file in openFileDialog1.FileNames) 
     { 
      // Create a PictureBox. 
      try 
      { 
       PictureBox pb = new PictureBox(); 
       Image loadedImage = Image.FromFile(file); 
       pb.Height = loadedImage.Height; 
       pb.Width = loadedImage.Width; 
       pb.Image = loadedImage; 
       flowLayoutPanel1.Controls.Add(pb); 
      } 
      catch (SecurityException ex) 
      { 
       // The user lacks appropriate permissions to read files, discover paths, etc. 
       MessageBox.Show("Security error. Please contact your administrator for details.\n\n" + 
        "Error message: " + ex.Message + "\n\n" + 
        "Details (send to Support):\n\n" + ex.StackTrace 
       ); 
      } 
      catch (Exception ex) 
      { 
       // Could not load the image - probably related to Windows file system permissions. 
       MessageBox.Show("Cannot display the image: " + file.Substring(file.LastIndexOf('\\')) 
        + ". You may not have permission to read the file, or " + 
        "it may be corrupt.\n\nReported error: " + ex.Message); 
      } 
     } 
    } 
संबंधित मुद्दे