我已经实现了许多帖子中提到的fusion.dll包装器,现在发现我需要确定是否需要更新的至少一个dll不使用构建和修订号。因此,我无法比较版本号,需要在上次修改日期进行比较。
fusion.dll或它的包装器没有这样的方法,我认为这是公平的,但我如何确定dll的“真实”路径,以便我可以发现它的最后修改日期。
到目前为止我的代码:
private DateTime getGACVersionLastModified(string DLLName)
{
FileInfo fi = new FileInfo(DLLName);
string dllName = fi.Name.Replace(fi.Extension, "");
DateTime versionDT = new DateTime(1960,01,01);
IAssemblyEnum ae = AssemblyCache.CreateGACEnum();
IAssemblyName an;
AssemblyName name;
while (AssemblyCache.GetNextAssembly(ae, out an) == 0)
{
try
{
name = GetAssemblyName(an);
if (string.Compare(name.Name, dllName, true) == 0)
{
FileInfo dllfi = new FileInfo(string.Format("{0}.dll", name.Name));
if (DateTime.Compare(dllfi.LastWriteTime, versionDT) >= 0)
versionDT = dllfi.LastWriteTime;
}
}
catch (Exception ex)
{
logger.FatalException("Unable to get version number: ", ex);
}
}
return versionDT;
}
答案 0 :(得分:1)
从您问题中的问题描述中我可以看到您确实要完成两项主要任务:
1)确定是否可以从GAC加载给定的程序集名称 2)返回给定程序集的文件修改日期。
我相信这两点可以更简单的方式完成,而无需使用unmanaged fusion API。更简单的方法可能如下:
static void Main(string[] args)
{
// Run the method with a few test values
GetAssemblyDetail("System.Data"); // This should be in the GAC
GetAssemblyDetail("YourAssemblyName"); // This might be in the GAC
GetAssemblyDetail("ImaginaryAssembly"); // This just plain doesn't exist
}
private static DateTime? GetAssemblyDetail(string assemblyName)
{
Assembly a;
a = Assembly.LoadWithPartialName(assemblyName);
if (a != null)
{
Console.WriteLine("'{0}' is in GAC? {1}", assemblyName, a.GlobalAssemblyCache);
FileInfo fi = new FileInfo(a.Location);
Console.WriteLine("'{0}' Modified: {1}", assemblyName, fi.LastWriteTime);
return fi.LastWriteTime;
}
else
{
Console.WriteLine("Assembly '{0}' not found", assemblyName);
return null;
}
}
结果输出的示例:
'System.Data'在GAC中?真
'System.Data'修改时间:10/1/2010 9:32:27 AM 'YourAssemblyName'在GAC中?假
'YourAssemblyName'修改日期:12/30/2010 4:25:08 AM 未找到装配'ImaginaryAssembly'