OpenFileDialog.SafeFileName Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the file name and extension for the file selected in the dialog box. The file name does not include the path.
public:
property System::String ^ SafeFileName { System::String ^ get(); };
[System.ComponentModel.Browsable(false)]
public string SafeFileName { get; }
[<System.ComponentModel.Browsable(false)>]
member this.SafeFileName : string
Public ReadOnly Property SafeFileName As String
Property Value
The file name and extension for the file selected in the dialog box. The file name does not include the path. The default value is an empty string.
- Attributes
Remarks
A safe file name (just the file name and extension without a path) can be used to improve security for applications because it does not expose path information. This property should be accessible to code running with limited trust.