FileVersionInfo.FileName Property

Definition

Gets the name of the file that this instance of FileVersionInfo describes.

public:
 property System::String ^ FileName { System::String ^ get(); };
public string FileName { get; }
member this.FileName : string
Public ReadOnly Property FileName As String

Property Value

The name of the file described by this instance of FileVersionInfo.

Examples

The following example calls GetVersionInfo to get the FileVersionInfo for the Notepad. Then it prints the FileName in a text box. This code assumes textBox1 has been instantiated.

private:
    void GetFileName()
    {
        // Get the file version for the notepad.
        FileVersionInfo^ myFileVersionInfo =
            FileVersionInfo::GetVersionInfo( Environment::SystemDirectory + "\\Notepad.exe" );

        // Print the file name.
        textBox1->Text = String::Concat( "File name: ", myFileVersionInfo->FileName );
    }
private void GetFileName()
{
    // Get the file version for the notepad.
    FileVersionInfo myFileVersionInfo =
        FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\\Notepad.exe");

    // Print the file name.
    textBox1.Text = "File name: " + myFileVersionInfo.FileName;
}
Private Sub GetFileName()
    ' Get the file version for the notepad.
    Dim myFileVersionInfo As FileVersionInfo = _
        FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\Notepad.exe")
    
    ' Print the file name.
    textBox1.Text = "File name: " & myFileVersionInfo.FileName
End Sub

Applies to