SaveFileDialog
Prompts the user to select a location for saving a file on the server.
Last updated
Prompts the user to select a location for saving a file on the server.
Last updated
This class can either open and overwrite an existing file or create a new file.
Most of the functionality for this class is found in the FileDialog class.
For a full list of properties, methods and events see the API documentation.
The SaveFileDialog is able to filter the types of files shown to the user based on a given pattern. For example, the filter Image Files|.jpg|All files|.* will by default show users files in the given directory ending with .jpg. The filter can be modified by changing the selection in the dropdown on the bottom right.
The FileDialog.FileName property returns the path selected by the user, which is the virtual path relative to the root. To retrieve the physical path on the server use FileDialog.MapPath().
The SaveFileDialog is able to validate whether or not a certain file exists before saving it to the disk. This can help prevent overwriting an existing file.
The SaveFileDialog component has an optional "?" (Help) tool that allows you to process and display information to help users navigate the control.
In order to view files, you must add at least one IFileSystemProvider to the Roots collection before showing the dialog.
The SaveFileDialog component can be customized by applying appearances to each individual control within the dialog. This includes the textboxes, picker, and more.
To customize these controls, create a new class that inherits from FileDialogUI, add the custom FileDialog constructor, and modify the controls within it:
After applying the OpenFileDialog's DialogTemplate property to the new class, the resulting popup will look like this:
For instructions on how to use a custom template to offer advanced customization of the SaveFileDialog, see below.