FileVersionInfo.OriginalFilename Property

Definition

Gets the name the file was created with.

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

Property Value

The name the file was created with or null if the file did not contain version information.

Examples

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

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

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

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

Remarks

This property enables an application to determine whether a file has been renamed.

Applies to