Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 91745
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T23:04:41+00:00 2026-05-10T23:04:41+00:00

I want to open a save file dialog, have the user enter a filename,

  • 0

I want to open a save file dialog, have the user enter a filename, and if they forget the .csv extension, have it tacked on.

It would seem that the SaveFileDialog AddExtension property would work, but its doesn’t. I’ve even set the DefaultExt property to .csv, and still nothing gets tacked on. My file gets saved just fine, but sans extension, so the user can’t just double click on the file and have it open in Excel.

I have to be missing something obvious. Here’s what I’ve got

        SaveFileDialog sfd = new SaveFileDialog();         sfd.DefaultExt = '*.csv';         sfd.Filter = 'Comma Separated(*.csv)|*.*';         if (sfd.ShowDialog() == DialogResult.OK)         {             // Do my file saving         } 
  • 1 1 Answer
  • 2 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T23:04:41+00:00Added an answer on May 10, 2026 at 11:04 pm

    Try just using 'csv' for the DefaultExt – also, you should be using this (it is IDisposable):

            using (SaveFileDialog sfd = new SaveFileDialog())         {             sfd.AddExtension = true;             sfd.DefaultExt = 'csv';             sfd.Filter = 'Comma Separated(*.csv)|*.*';             if (sfd.ShowDialog() == DialogResult.OK)             {                 // Do my file saving             }         } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In my app, I open the camera and want to save that file with
want to open pdf file when a user clicks on hyperlink shown in gridview
Is it possible to restrict a file dialog(open/save) to a specific folder is winapi?
Using Javascript is it possible to listen for browser's file open/save dialog box event.
In Silverlight you have to save a file using the save file dialog. You
I have a C# Windows Application and want to open up the standard Save/Download
What I want open a file if it exists, create it if it not
I want to open a document file using Open Xml Open Method, search for
I want to open a MFC modeless dialog from a MFC dll injected into
Linking to external file in Ruby on Rails I have a file I want

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.