FileVersionInfo.GetVersionInfo(String) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定されたファイルに関連付けられているバージョン情報を表す FileVersionInfo を返します。
public:
static System::Diagnostics::FileVersionInfo ^ GetVersionInfo(System::String ^ fileName);
public static System.Diagnostics.FileVersionInfo GetVersionInfo (string fileName);
static member GetVersionInfo : string -> System.Diagnostics.FileVersionInfo
Public Shared Function GetVersionInfo (fileName As String) As FileVersionInfo
パラメーター
- fileName
- String
バージョン情報を取得するファイルの絶対パスおよびファイル名。
戻り値
ファイルについての情報が格納されている FileVersionInfo。 ファイルにバージョン情報が含まれていない場合、FileVersionInfo には要求されたファイルの名前のみが含まれます。
例外
指定されたファイルが見つかりません。
例
次の例では、 を呼び出 GetVersionInfo してメモ帳の を FileVersionInfo 取得し、コンソール ウィンドウにファイルの説明とバージョン番号を表示します。
#using <System.dll>
using namespace System;
using namespace System::IO;
using namespace System::Diagnostics;
public ref class Class1
{
public:
static void Main()
{
// Get the file version for the notepad.
// Use either of the two following methods.
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);
}
};
int main()
{
Class1::Main();
}
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);
}
}
Imports System.IO
Imports System.Diagnostics
Class Class1
Public Shared Sub Main(ByVal args() As String)
' Get the file version for the notepad.
' Use either of the following two commands.
FileVersionInfo.GetVersionInfo(Path.Combine(Environment.SystemDirectory, "Notepad.exe"))
Dim myFileVersionInfo As FileVersionInfo = FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\Notepad.exe")
' Print the file name and version number.
Console.WriteLine("File: " + myFileVersionInfo.FileDescription + vbLf + "Version number: " + myFileVersionInfo.FileVersion)
End Sub
End Class
適用対象
こちらもご覧ください
- SpecialBuild
- ProductVersion
- ProductPrivatePart
- ProductName
- ProductMinorPart
- ProductMajorPart
- ProductBuildPart
- PrivateBuild
- OriginalFilename
- LegalTrademarks
- LegalCopyright
- IsSpecialBuild
- IsPreRelease
- IsPrivateBuild
- IsPatched
- IsDebug
- InternalName
- FileVersion
- FilePrivatePart
- FileName
- FileMinorPart
- FileMajorPart
- FileDescription
- FileBuildPart
- CompanyName
- Comments
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET