我正在构建一个小型应用程序,并希望从项目外部的目录访问文件(IE图像),但是该应用程序将在服务器上运行。
如何访问所需的目录?
答案 0 :(得分:0)
我在Configure中的Startup.cs中使用了此功能
app.UseFileServer(new FileServerOptions()
{
FileProvider = new PhysicalFileProvider(env.ContentRootPath + "/Albums"),
RequestPath = new PathString("/Albums"),
EnableDirectoryBrowsing = true
});
从应该使用它的模型中:
Initialize(_environment.WebRootPath + "/Albums");