2009-06-12 69 views
2

當您右鍵單擊一個.exe文件時,可以看到各種詳細信息,例如文件描述。檢索可執行文件

我正在尋找方式以編程方式檢索該數據(最好是從C#)。

(程序名,程序的描述,供應商名稱,供應商的網站等)通過FileVersionInfo這個

alt text

+2

非常相似到這篇文章:http://stackoverflow.com/questions/220097/read-write-extended-file-properties-c。你可能會在那裏找到一些想法 – 2009-06-12 10:31:19

回答

8

你可以得到很多(但不是全部):

FileVersionInfo fvi = FileVersionInfo.GetVersionInfo(path); 
    string company = fvi.CompanyName; 
    string productName = fvi.ProductName; 
    string productVer = fvi.ProductVersion; 
    // etc