2
有沒有辦法檢查文件的版本?我正在使用Windows窗體應用程序。有沒有辦法檢查文件的版本?
有沒有辦法檢查文件的版本?我正在使用Windows窗體應用程序。有沒有辦法檢查文件的版本?
您可以使用System.Diagnostics。 FileVersionInfo .GetVersionInfo(字符串)
FileVersionInfo
提供對磁盤上的物理文件版本信息。
GetVersionInfo()
返回FileVersionInfo表示與指定的文件相關聯的版本信息。
var version = FileVersionInfo.GetVersionInfo(path).FileVersion;
使用此:
var filePath = @"C:\Windows\System32\xwizard.exe";
var fileInfo = FileVersionInfo.GetVersionInfo(filePath);
var vers = fileInfo.FileVersion;
是增加了一個例子。 –