Search code examples
c#reflectionassembliesc#-2.0activator

How to check if a certain assembly exists?


I'm using the Activator to instantiate a new class based on the short name of an assembly (e.a. 'CustomModule'). It throws a FileNotFoundException, because the assembly isn't there. Is there a way to check if a certain assembly name is present?

I'm using the following code:

System.Runtime.Remoting.ObjectHandle obj = 
    System.Activator.CreateInstance(assemblyName, className);

The main objective is to rather test for the presence of the assembly than to wait for the exception to occur.


Solution

  • If you'll notice my comment to your question it will be evident that I'm not rightly sure exactly how you want or need to go about this, but until we have a more elaborate description I can only offer you this in the hope it fits well to your situation (the key is in 'searching' the assemblies):

    var className = "System.Boolean";
    var assemblyName = "mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089";
    var assemblies = AppDomain.CurrentDomain.GetAssemblies();
    var assembly = (from a in assemblies
                    where a.FullName == assemblyName
                    select a).SingleOrDefault();
    if (assembly != null)
    {
        System.Runtime.Remoting.ObjectHandle obj = 
            System.Activator.CreateInstance(assemblyName, className);             
    }
    

    .NET 2.0 Compatible Code

    Assembly assembly = null;
    var className = "System.Boolean";
    var assemblyName = "mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089";
    
    foreach (var a in AppDomain.CurrentDomain.GetAssemblies())
    {
        if (a.FullName == assemblyName)
        {
            assembly = a;
            break;
        }
    }
    
    if (assembly != null)
    {
        System.Runtime.Remoting.ObjectHandle obj =
            System.Activator.CreateInstance(assemblyName, className);
    }
    

    If you want to determine whether or not the file exists before trying to load it (a good practice) then, given you have its name and know the desired location, simply try to find the file when the assembly is being resolved:

    AppDomain.CurrentDomain.AssemblyResolve += new ResolveEventHandler(CurrentDomain_AssemblyResolve);
    
    var className = "StackOverflowLib.Class1";
    var assemblyName = "StackOverflowLib.dll";
    var currentAssemblyPath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
    var obj = Activator.CreateInstance(Path.Combine(currentAssemblyPath, assemblyName), className);
    
    static Assembly CurrentDomain_AssemblyResolve(object sender, ResolveEventArgs args)
    {
        var currentAssemblyPath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
        if (File.Exists(Path.Combine(currentAssemblyPath, args.Name)))
        {
            return Assembly.LoadFile(Path.Combine(currentAssemblyPath, args.Name));
        }
        return null;
    }