小编典典

如何在asp.net核心中获取项目的根目录。Directory.GetCurrentDirectory()在Mac上似乎无法正常工作

c#

我的项目具有以下文件夹结构:

  • 项目,
  • 项目/数据
  • 项目/引擎
  • 项目/服务器
  • 项目/前端

在服务器中(在Project / Server文件夹中运行),我指的是这样的文件夹:

var rootFolder = Directory.GetCurrentDirectory();
rootFolder = rootFolder.Substring(0,
            rootFolder.IndexOf(@"\Project\", StringComparison.Ordinal) + @"\Project\".Length);
PathToData = Path.GetFullPath(Path.Combine(rootFolder, "Data"));

var Parser = Parser();
var d = new FileStream(Path.Combine(PathToData, $"{dataFileName}.txt"), FileMode.Open);
var fs = new StreamReader(d, Encoding.UTF8);

在我的Windows机器上,此代码可以正常工作,因为已Directory.GetCurrentDirectory()转至当前文件夹,并且

rootFolder.Substring(0, rootFolder.IndexOf(@"\Project\", StringComparison.Ordinal) + @"\Project\".Length);

获取我项目的根文件夹(不是bin或debug文件夹)。但是,当我在Mac上运行它时,它却把Directory.GetCurrentDirectory()我发送到/
usr // [其他]。它没有指向我的项目所在的文件夹。

在项目中查找相对路径的正确方法是什么?我应该在哪里将数据文件夹存储在解决方案中的所有子项目(特别是kestrel服务器项目)都可以轻松访问的位置?我宁愿不必将其存储在wwwroot文件夹中,因为数据文件夹是由团队中的其他成员维护的,而我只想访问最新版本。我有什么选择?


阅读 349

收藏
2020-05-19

共1个答案

小编典典

根据您在kestrel管道中的位置-如果您可以访问IConfigurationStartup.cs
构造函数
),或者IHostingEnvironment可以将注入IHostingEnvironment到您的构造函数中,或者只是从配置中请求密钥。

注射IHostingEnvironmentStartup.cs构造函数

public Startup(IConfiguration configuration, IHostingEnvironment env)
{
     var contentRoot = env.ContentRootPath;
}

在Startup.cs构造函数中使用IConfiguration

public Startup(IConfiguration configuration)
{
     var contentRoot = configuration.GetValue<string>(WebHostDefaults.ContentRootKey);
}
2020-05-19