Getting the .NET Framework directory path

77,151

Solution 1

The path to the installation directory of the CLR active for the current .NET application can be obtained by using the following method:

System.Runtime.InteropServices.RuntimeEnvironment.GetRuntimeDirectory()

I would strongly advice against reading the registry directly. For example, when a .NET application is running in 64bit systems, the CLR can either be loaded from "C:\Windows\Microsoft.NET\Framework64\v2.0.50727" (AnyCPU, x64 compilation targets) or from "C:\Windows\Microsoft.NET\Framework\v2.0.50727" (x86 compilation target). Reading registry will not tell you which one of the two directories was used by the current CLR.

Another important fact is that "the current CLR" will be "2.0" for .NET 2.0, .NET 3.0 and .NET 3.5 applications. This means that the GetRuntimeDirectory() call will return 2.0 directory even within .NET 3.5 applications (that load some of their assemblies from 3.5 directory). Depending on your interpretation of the term ".NET Framework directory path", GetRuntimeDirectory might not be the information you are looking for ("CLR directory" versus "directory from which 3.5 assemblies are coming from").

Solution 2

An easier way is to include the Microsoft.Build.Utilities assembly and use

using Microsoft.Build.Utilities;
ToolLocationHelper.GetPathToDotNetFramework(
        TargetDotNetFrameworkVersion.VersionLatest);

Solution 3

You can grab it from the Windows Registry:

using System;
using Microsoft.Win32;

// ...

public static string GetFrameworkDirectory()
{
  // This is the location of the .Net Framework Registry Key
  string framworkRegPath = @"Software\Microsoft\.NetFramework";

  // Get a non-writable key from the registry
  RegistryKey netFramework = Registry.LocalMachine.OpenSubKey(framworkRegPath, false);

  // Retrieve the install root path for the framework
  string installRoot = netFramework.GetValue("InstallRoot").ToString();

  // Retrieve the version of the framework executing this program
  string version = string.Format(@"v{0}.{1}.{2}\",
    Environment.Version.Major, 
    Environment.Version.Minor,
    Environment.Version.Build); 

  // Return the path of the framework
  return System.IO.Path.Combine(installRoot, version);     
}

Source

Share:
77,151
csfb
Author by

csfb

Updated on July 05, 2022

Comments

  • csfb
    csfb almost 2 years

    How can I obtain the .NET Framework directory path inside my C# application?

    The folder that I refer is "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727"

  • DSO
    DSO about 15 years
    I believe this is the right answer and should be the selected one. Thanks for clarifying the fact that GetRuntimeDirectory always returns the 2.0 folder even on 3.0 or 3.5 apps. This is the correct behavior in most cases, where you want to access the framework tools, which are in 2.0 (but not in 3.0 3.5).
  • Milan Gardian
    Milan Gardian about 15 years
    I strongly advice against accessing registry directly (on a 64bit operating system this may actually give wrong answer). See my answer below for details.
  • Paya
    Paya over 13 years
    How can I get InstallRoot for x86 and x64 .NET frameworks on 64bit systems? Is "[HKLM]\Software\Microsoft.NetFramework\InstallRoot" always pointing to x86 version of .NET, even on 64bit systems? I need to get path to this folder with non-managed application, so I can't use the method you listed above. Thanks.
  • Milan Gardian
    Milan Gardian over 13 years
    Probably the easiest would be to create tiny .NET applications, one compiled for x86 (e.g. 'getdotnetpath32.exe') and another compiled for x64 (e.g. 'getdotnetpath64.exe'). The managed application would use the GetRuntimeDirectory() call and write it to STDOUT (Console.Output). Unmanaged application would then start a child process for x86 (getdotnetpath32.exe), connecting its STDOUT to its in-memory stream and reading what the process produces. Then it would start a child process for x64 (getdotnetpath64.exe), connecting its STDOUT to its in-memory stream and reading what the process produces
  • Alex Norcliffe
    Alex Norcliffe over 12 years
    If you would like the path to the directory where configuration files are stored, you can do the following: var readFromDirectory = System.IO.Path.GetDirectoryName(System.Runtime.InteropServic‌​es.RuntimeEnvironmen‌​t.SystemConfiguratio‌​nFile); var mediumTrustConfigPath = System.IO.Path.Combine(readFromDirectory, "web_mediumtrust.config");
  • Jonathan Allen
    Jonathan Allen over 9 years
    That sounds a lot better, especially when working on tools that affect the build process.
  • Dhru 'soni
    Dhru 'soni over 9 years
    @CMS i want to do same like silvetlight version . and if i am delete registry key that means software also uninstall from the system . Thank you
  • Pang
    Pang over 3 years
    I guess this won't work for .NET Core and .NET 5.0?