获取.NET程序集的日期

时间:2010-01-12 16:18:59

标签: c# .net-3.5

如何从当前的.NET程序集中检索创建日期?

我想添加一些简单的功能,我的应用程序在主程序集的构建日期后一周停止工作。我已经编写了在给定日期之后杀死我的应用程序的代码。我只需要以编程方式从程序集中检索创建日期。

7 个答案:

答案 0 :(得分:57)

以下内容基于:https://blog.codinghorror.com/determining-build-date-the-hard-way/

public static class ApplicationInformation
{
    /// <summary>
    /// Gets the executing assembly.
    /// </summary>
    /// <value>The executing assembly.</value>
    public static System.Reflection.Assembly ExecutingAssembly
    {
        get { return executingAssembly ?? (executingAssembly = System.Reflection.Assembly.GetExecutingAssembly()); }
    }
    private static System.Reflection.Assembly executingAssembly;

    /// <summary>
    /// Gets the executing assembly version.
    /// </summary>
    /// <value>The executing assembly version.</value>
    public static System.Version ExecutingAssemblyVersion
    {
        get { return executingAssemblyVersion ?? (executingAssemblyVersion = ExecutingAssembly.GetName().Version); }
    }
    private static System.Version executingAssemblyVersion;

    /// <summary>
    /// Gets the compile date of the currently executing assembly.
    /// </summary>
    /// <value>The compile date.</value>
    public static System.DateTime CompileDate
    {
        get
        {
            if (!compileDate.HasValue)
                compileDate = RetrieveLinkerTimestamp(ExecutingAssembly.Location);
            return compileDate ?? new System.DateTime();
        }
    }
    private static System.DateTime? compileDate;

    /// <summary>
    /// Retrieves the linker timestamp.
    /// </summary>
    /// <param name="filePath">The file path.</param>
    /// <returns></returns>
    /// <remarks>http://www.codinghorror.com/blog/2005/04/determining-build-date-the-hard-way.html</remarks>
    private static System.DateTime RetrieveLinkerTimestamp(string filePath)
    {
        const int peHeaderOffset = 60;
        const int linkerTimestampOffset = 8;
        var b = new byte[2048];
        System.IO.FileStream s = null;
        try
        {
            s = new System.IO.FileStream(filePath, System.IO.FileMode.Open, System.IO.FileAccess.Read);
            s.Read(b, 0, 2048);
        }
        finally
        {
            if(s != null)
                s.Close();
        }
        var dt = new System.DateTime(1970, 1, 1, 0, 0, 0).AddSeconds(System.BitConverter.ToInt32(b, System.BitConverter.ToInt32(b, peHeaderOffset) + linkerTimestampOffset));
        return dt.AddHours(System.TimeZone.CurrentTimeZone.GetUtcOffset(dt).Hours);
    }
}

答案 1 :(得分:46)

我不认为程序集本身包含它的创建日期。我怀疑你能得到的最接近的是汇编文件本身的创建日期:

File.GetCreationTime(Assembly.GetExecutingAssembly().Location)

应该这样做。

编辑:

我认为Jeff Atwood的解决方案,在这个帖子中由“手榴弹”编写,可能是现在更好的方法。

答案 2 :(得分:28)

出了什么问题:

System.IO.File.GetLastWriteTime(Assembly.GetExecutingAssembly().Location);

答案 3 :(得分:9)

也许这篇文章on coding horror可能会有所帮助

答案 4 :(得分:4)

这应该有效:

var entryAssembly = Assembly.GetEntryAssembly();
var fileInfo = new FileInfo(entryAssembly.Location);
var buildDate = fileInfo.LastWriteTime;

答案 5 :(得分:2)

执行此操作的最佳方法是使用您在程序集的PreBuild上设置的自定义属性。

然后使用标准反射来获取您创建的属性。

但出于好奇,为什么要在BUILD日期之后杀死应用程序?

答案 6 :(得分:1)

如果您使用紧凑框架编写移动设备的应用程序,则Assembly.Location不可用。

Here,我找到了另一种选择:

     System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase)