协慌网

登录 贡献 社区

如何获取代码所在的程序集的路径?

有没有办法获取当前代码所在的程序集的路径?我不希望调用程序集的路径,而只是包含代码的路径。

基本上,我的单元测试需要读取一些相对于 dll 的 xml 测试文件。无论测试 dll 是从 TestDriven.NET,MbUnit GUI 还是其他版本运行,我都希望该路径始终能够正确解析。

编辑 :人们似乎误会了我在问什么。

我的测试库位于

C:\ projects \ myapplication \ daotests \ bin \ Debug \ daotests.dll

我想走这条路:

C:\ projects \ myapplication \ daotests \ bin \ Debug \

到目前为止,当我从 MbUnit Gui 运行时,这三个建议使我失望:

  • Environment.CurrentDirectory给出c:\ Program Files \ MbUnit

  • System.Reflection.Assembly.GetAssembly(typeof(DaoTests)).Location给出C:\ Documents and Settings \ george \ Local Settings \ Temp \ .... \ DaoTests.dll

  • System.Reflection.Assembly.GetExecutingAssembly().Location与上一个相同。

答案

我定义了以下属性,因为我们在单元测试中经常使用此属性。

public static string AssemblyDirectory
{
    get
    {
        string codeBase = Assembly.GetExecutingAssembly().CodeBase;
        UriBuilder uri = new UriBuilder(codeBase);
        string path = Uri.UnescapeDataString(uri.Path);
        return Path.GetDirectoryName(path);
    }
}

使用 NUnit 时, Assembly.Location属性有时会给您一些有趣的结果(程序集从一个临时文件夹运行),因此我更喜欢使用CodeBase ,它以 URI 格式提供路径,然后UriBuild.UnescapeDataString删除File://开头, GetDirectoryName将其更改为普通的 Windows 格式。

这有帮助吗?

//get the full location of the assembly with DaoTests in it
string fullPath = System.Reflection.Assembly.GetAssembly(typeof(DaoTests)).Location;

//get the folder that's in
string theDirectory = Path.GetDirectoryName( fullPath );

就这么简单:

var dir = AppDomain.CurrentDomain.BaseDirectory;