获取文件路径到类库项目c#

时间:2018-01-04 09:33:47

标签: c# filepath

当我将文件路径放到类库项目上时,我遇到了问题。 我的类库项目中有一个log4net.config文件,我需要获取并阅读log4net.config。我测试了很多解决方案:

1

var buildDir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location); 
var filePath = buildDir + @"\log4net.config";

2

var dirPath = Assembly.GetExecutingAssembly().Location;
dirPath = Path.GetDirectoryName(dirPath);
return Path.GetFullPath(Path.Combine(dirPath, "\log4net.config"));

但我没有得到任何结果。请提出解决方案。

0 个答案:

没有答案