359
Chương 9: File, thư mục, và I/O
}
}
5.
5.
Truy xu t thông tin phiên b n c a file
ấ
ả ủ
Truy xu t thông tin phiên b n c a file
ấ
ả ủ
Bạn cần truy xuất các thông tin về phiên bản của file như publisher, revision
number, comment…
Sử dụng phương thức tĩnh
GetVersionInfo
của lớp
System.Diagnostics.
FileVersionInfo
.
.NET Framework cho phép bạn truy xuất các thông tin về file mà không cần dựa vào
Windows API. Bạn chỉ cần sử dụng lớp
FileVersionInfo
và gọi phương thức
GetVersionInfo
với đối số là tên file. Kế đó, bạn có thể truy xuất thông tin thông qua các thuộc tính của
FileVersionInfo
.
using System;
using System.Diagnostics;
public class VersionInfo {
private static void Main(string[] args) {
if (args.Length == 0) {
Console.WriteLine("Please supply a file name.");
return;
}
FileVersionInfo info = FileVersionInfo.GetVersionInfo(args[0]);
// Hiển thị các thông tin về phiên bản.
Console.WriteLine("Checking File: " + info.FileName);
Console.WriteLine("Product Name: " + info.ProductName);
Console.WriteLine("Product Version: " + info.ProductVersion);
Console.WriteLine("Company Name: " + info.CompanyName);
Console.WriteLine("File Version: " + info.FileVersion);
Console.WriteLine("File Description: " + info.FileDescription);
Console.WriteLine("Original Filename: " + info.OriginalFilename);
Console.WriteLine("Legal Copyright: " + info.LegalCopyright);
Console.WriteLine("InternalName: " + info.InternalName);
Console.WriteLine("IsDebug: " + info.IsDebug);