Set CheckFileExists to true : SaveFileDialog « GUI Windows Form « C# / C Sharp






Set CheckFileExists to true

 

using System;
using System.Windows.Forms;

class MainClass {
    static void Main(string[] args) {
        SaveFileDialog dlg = new SaveFileDialog();
        dlg.CheckFileExists = true;

        if (dlg.ShowDialog() == DialogResult.OK) {
            Console.WriteLine(dlg.FileName);
        }
    }
}

 








Related examples in the same category

1.Call ShowDialog method to show the dialog
2.Use Filter in SaveFileDialog to filter file extension
3.Set InitialDirectory for SaveFileDialog