The C # (Winform) SaveFileDialog (File Save dialog box) control uses

Source: Internet
Author: User

#region Save dialog box
private void Showsavefiledialog ()
{
//string Localfilepath, Filenameext, NewFileName, FilePath;
SaveFileDialog sfd = new SaveFileDialog ();

//Set File type
SfD. Filter = "Database backup file (*.bak) |*.bak| data file (*.mdf) |*.mdf| log file (*.ldf) |*.ldf";

//Set Default file type display order
SfD. FilterIndex = 1;

//Save dialog box to remember the last Open Directory
SfD. restoredirectory = true;

         // Click the Save button to enter  
          if (SFD. ShowDialog () = = dialogresult.ok )
        {
               string Localfilepath = SFD. Filename.tostring () ; Get file path  
               string Filenameext = localfilepath.substring (localfilepath.lastindexof ("\ \") + 1); Gets the file name without the path

}
}

#endregion

The C # (Winform) SaveFileDialog (File Save dialog box) control uses

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.