次の方法で共有


FileVersionInfo クラス

ディスク上の物理ファイルのバージョン情報を提供します。

この型のすべてのメンバの一覧については、FileVersionInfo メンバ を参照してください。

System.Object
   System.Diagnostics.FileVersionInfo

NotInheritable Public Class FileVersionInfo
[C#]
public sealed class FileVersionInfo
[C++]
public __gc __sealed class FileVersionInfo
[JScript]
public class FileVersionInfo

スレッドセーフ

この型の public static (Visual Basicでは Shared) のすべてのメンバは、マルチスレッド操作で安全に使用できます。インスタンスのメンバの場合は、スレッドセーフであるとは限りません。

解説

通常、バージョン番号は "メジャー番号.マイナ番号.ビルド番号.プライベート パート番号" の形式で表示されます。ファイル バージョン番号は、ファイルのバージョン番号を示す 64 ビットの数値であり、次のような構成になっています。

ファイルに関する情報を含む FileVersionInfo を取得するには、このクラスの GetVersionInfo メソッドを使用して、プロパティでファイルの情報を参照します。 FileVersion プロパティは、ファイルに関するバージョン情報を提供します。 ProductMajorPartProductMinorPartProductBuildPartProductPrivatePartProductVersion の各プロパティは、指定したファイルを含む製品のバージョン情報を提供します。このファイルのプロパティの部分リストとその値を取得するには ToString を呼び出します。

使用例

GetVersionInfo を呼び出して、メモ帳の FileVersionInfo を取得する例を次に示します。次に、ファイルの説明とバージョン番号をテキスト ボックスに出力します。このコードは、 textBox1 がインスタンス化されていることを前提としています。

 
Public Sub GetFileVersion()
    ' Get the file version for the notepad.
    Dim myFileVersionInfo As FileVersionInfo = FileVersionInfo.GetVersionInfo("%systemroot%\Notepad.exe")
    
    ' Print the file name and version number.
    textBox1.Text = "File: " & myFileVersionInfo.FileDescription & ControlChars.Cr & _
        "Version number: " & myFileVersionInfo.FileVersion
End Sub 'GetFileVersion

[C#] 
public void GetFileVersion() {
    // Get the file version for the notepad.
    FileVersionInfo myFileVersionInfo = FileVersionInfo.GetVersionInfo("%systemroot%\\Notepad.exe");
 
    // Print the file name and version number.
    textBox1.Text = "File: " + myFileVersionInfo.FileDescription + '\n' +
       "Version number: " + myFileVersionInfo.FileVersion;
 }
    

[C++] 
public:
void GetFileVersion() {
    // Get the file version for the notepad.
    FileVersionInfo* myFileVersionInfo = FileVersionInfo::GetVersionInfo(S"%systemroot%\\Notepad.exe");
 
    // Print the file name and version number.
    textBox1->Text = String::Format( S"File: {0}\nVersion number: {1}",
       myFileVersionInfo->FileDescription, myFileVersionInfo->FileVersion );
 }
    

[JScript] 
public function GetFileVersion() {
    //Get the file version for the notepad.
    var myFileVersionInfo : FileVersionInfo = FileVersionInfo.GetVersionInfo("%systemroot%\\Notepad.exe");
 
    //Print the file name and version number.
    textBox1.Text = "File: " + myFileVersionInfo.FileDescription + '\n' +
       "Version number: " + myFileVersionInfo.FileVersion;
 }
    

必要条件

名前空間: System.Diagnostics

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

アセンブリ: System (System.dll 内)

参照

FileVersionInfo メンバ | System.Diagnostics 名前空間 | FileVersion | Version