小编典典

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

c#

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

基本上,我的单​​元测试需要读取一些相对于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 给出与先前相同的结果。


阅读 266

收藏
2020-05-19

共1个答案

小编典典

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

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);
    }
}

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

2020-05-19