FileVersionInfo.GetVersionInfo Method
Returns a FileVersionInfo representing the version information associated with the specified file.
Namespace: System.Diagnostics
Assembly: System (in System.dll)
Parameters
- fileName
- Type: System.String
The fully qualified path and name of the file to retrieve the version information for.
Return Value
Type: System.Diagnostics.FileVersionInfoA FileVersionInfo containing information about the file. If the file did not contain version information, the FileVersionInfo contains only the name of the file requested.
| Exception | Condition |
|---|---|
| FileNotFoundException | The file specified cannot be found. |
The following example calls GetVersionInfo to get the FileVersionInfo for Notepad and displays the file description and version number in the console window.
using System; using System.IO; using System.Diagnostics; class Class1 { public static void Main(string[] args) { // Get the file version for the notepad. // Use either of the two following commands. FileVersionInfo.GetVersionInfo(Path.Combine(Environment.SystemDirectory, "Notepad.exe")); FileVersionInfo myFileVersionInfo = FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\\Notepad.exe"); // Print the file name and version number. Console.WriteLine("File: " + myFileVersionInfo.FileDescription + '\n' + "Version number: " + myFileVersionInfo.FileVersion); } }
- FileIOPermission
to get the version information. Associated enumeration: FileIOPermissionAccess.Read
- SecurityAction.LinkDemand
for full trust for the immediate caller. This class cannot be used by partially trusted code.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.