gpt4 book ai didi

c# - 在域中运行的单元测试中获取物理文件路径而不是域的相对路径

转载 作者:太空宇宙 更新时间:2023-11-03 15:38:21 24 4
gpt4 key购买 nike

如何在我的单元测试中获取物理文件而不是域相关路径?

我正在使用这段代码:

 var codebase = Assembly.GetExecutingAssembly().CodeBase;
var pathUrlToDllDirectory = Path.GetDirectoryName(codebase);
var pathToDllDirectory = new Uri(pathUrlToDllDirectory).LocalPath;

我得到的是这个

文件:\compdata\folders$\userA\Documents\Projects\ProjectA\ProjectA.Test\bin\Debug

但我所期望的是这样的:

C:\windows\userA\Documents\Projects\ProjectA\ProjectA.Test\bin\Debug

最佳答案

我为 Assembly 创建了这些扩展来获得它们。看看它是否适合你:

using System.IO;
using System.Reflection;


public static class AssemblyExtensions
{
/// <summary>
/// Implemented - Returns the full path of the assembly file.
/// </summary>
public static string GetAssemblyPath(this Assembly Assemb)
{
string FileName = Assemb.CodeBase;

if (FileName.Substring(0, 4).ToUpperInvariant() == "FILE")
FileName = FileName.Remove(0, 8);

return FileName;
}


/// <summary>
/// Implemented - Returns the path to the folder where the assembly file is located
/// </summary>
public static string GetAssemblyFolder(this Assembly Assemb)
{
return Path.GetDirectoryName(GetAssemblyPath(Assemb));
}


/// <summary>
/// Implemented - Combines the assembly folder with the passed filename, returning the full path of that file in the assmebly's folder.
/// </summary>
public static string GetFileInAssemblyFolder(this Assembly Assemb, string FileName)
{
return Path.Combine(GetAssemblyFolder(Assemb), FileName);
}



/// <summary>
/// Implemented - Returns the full name of the embedded resources containing the passed string - Match case
/// </summary>
/// <param name="Assemb"></param>
/// <param name="ResourceName"></param>
/// <returns></returns>
public static IEnumerable<string> GetResourcesContainingString(this Assembly Assemb, string ResourceName)
{
return Assemb.GetManifestResourceNames().Where(S => S.Contains(ResourceName));
}



/// <summary>
/// Implemented - Returns the full name of the first embedded resource containing the passed string - Match case
/// </summary>
/// <param name="Assemb"></param>
/// <param name="ResourceName"></param>
/// <returns></returns>
public static string GetFirstResourceContainingString(this Assembly Assemb, string ResourceName)
{
return Assemb.GetResourcesContainingString(ResourceName).First();
}
}

关于c# - 在域中运行的单元测试中获取物理文件路径而不是域的相对路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31058668/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com