從 .NET 執行檔中擷取建置日期
以程式設計方式確定 .NET 可執行檔的建置日期可能很棘手,因為許多開發人員只能存取建構號。 本文詳細介紹了一種使用 C# 檢索此資訊的強大方法,利用 PE 標頭的嵌入時間戳。
利用 PE 標頭時間戳記
PE(可移植可執行檔)標頭儲存反映可執行檔案連結時間的時間戳記。 Joe Spivey 的 C# 程式碼提供了一個方便的存取方式:
<code class="language-csharp">public static DateTime GetLinkerTime(this Assembly assembly, TimeZoneInfo target = null) { string filePath = assembly.Location; const int c_PeHeaderOffset = 60; const int c_LinkerTimestampOffset = 8; byte[] buffer = new byte[2048]; using (FileStream stream = new FileStream(filePath, FileMode.Open, FileAccess.Read)) stream.Read(buffer, 0, 2048); int offset = BitConverter.ToInt32(buffer, c_PeHeaderOffset); int secondsSince1970 = BitConverter.ToInt32(buffer, offset + c_LinkerTimestampOffset); DateTime epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc); DateTime linkTimeUtc = epoch.AddSeconds(secondsSince1970); TimeZoneInfo tz = target ?? TimeZoneInfo.Local; DateTime localTime = TimeZoneInfo.ConvertTimeFromUtc(linkTimeUtc, tz); return localTime; }</code>
用法範例:
<code class="language-csharp">DateTime buildDate = Assembly.GetExecutingAssembly().GetLinkerTime();</code>
重要注意事項:雖然對.NET Core 1.0 有效,但由於潛在的PE 標頭格式更改,此方法的準確性可能會在更高版本的.NET Core 版本(1.1 及更高版本)中受到影響。
以上是如何以程式設計方式取得 .NET 可執行檔的建置日期?的詳細內容。更多資訊請關注PHP中文網其他相關文章!