.NET Framework Class Library
OpenFileDialog.SafeFileName Property
Gets the file name and extension for the file selected in the dialog box. The file name does not include the path.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Syntax
Visual Basic
<BrowsableAttribute(False)> _ Public ReadOnly Property SafeFileName As String
C#
[BrowsableAttribute(false)] public string SafeFileName { get; }
Visual C++
[BrowsableAttribute(false)] public: property String^ SafeFileName { String^ get (); }
F#
[<BrowsableAttribute(false)>] member SafeFileName : string
Property Value
Type: System.StringThe 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.
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.
Version Information
.NET Framework
Supported in: 4, 3.5 SP1, 3.0 SP1, 2.0 SP1.NET Framework Client Profile
Supported in: 4, 3.5 SP1Platforms
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also