IIS中的IEnvironment.WebRootPath和虚拟目录

时间:2016-10-24 14:50:57

标签: c# asp.net-mvc asp.net-core asp.net-core-mvc

我在IIS 7.5中有一个网站,并尝试将文件上传到位于另一个驱动器上的Files文件夹中。我将名为文件的虚拟文件夹添加到 wwwroot 文件夹中。

该虚拟文件文件夹路径为 D:\ files

我在控制器中上传的代码:

_env变量是IHostingEnvironment并在构造函数中注入。

var filename = _env.WebRootPath + $@"\files\{model.JobID}.{model.FileExt}";
using (FileStream fs = System.IO.File.Create(filename))
{
    AttachFile.CopyTo(fs);
    fs.Flush();
}

它在本地工作,因为我在我的机器中获得了物理文件夹wwwroot \ files。但它不能在Production服务器上运行并出现以下错误:

An unhandled exception has occurred: Could not find a part of the path 'C:\inetpub\Mysite\wwwroot\files\111214.png'.

但我在ASPNet 4.6.1中有另一个网站,我使用Server.MapPath上传文件。它可以在该网站上运行,我可以成功上传文件。

string SaveLocation = string.Format(@"{0}\{1}{2}", Server.MapPath("files"), JobID, FileExt);

enter image description here

根据这篇文章,它说Server.MapPath和WebRootPath是相似的。 http://www.mikesdotnetting.com/article/302/server-mappath-equivalent-in-asp-net-core

但是,在我看来,WebRootPath只为我们提供了网站的RootPath。它不接受评估给定URL的参数,如Server.MapPath。

您能否告诉我如何在Production Server上上传文件,而不是在.Net Core应用程序中硬编码物理路径?

更新1:

这是我到目前为止最好的...我们可以通过这种方式访问​​或创建另一个虚拟URL以指向其他位置。它可以通过http://mysite/Files/abc.jpg

进行访问

参考:ASPNetCore StaticFiles

app.UseStaticFiles(new StaticFileOptions()
    {
        FileProvider = new PhysicalFileProvider(@"D:\Files"),
        RequestPath = new PathString("/Files"),                
    });

但是,它只是readonly url,我无法通过使用“/Files/newfile.jpg”或Path.Combine(_env.WebRootPath,“newfile.jpg”)上传到此路径,因为它实际上不存在。

1 个答案:

答案 0 :(得分:0)

以下是配置内容和网络根源的方法:

public class Program
{
    public static void Main(string[] args)
    {
        var contentRoot = Directory.GetCurrentDirectory();

        var config = new ConfigurationBuilder()
           .SetBasePath(contentRoot)
           .AddJsonFile("hosting.json", optional: true)
           .Build();

        //WebHostBuilder is required to build the server. We are configurion all of the properties on it
        var hostBuilder = new WebHostBuilder()

            .UseKestrel()

             //Content root - in this example it will be our current directory
            .UseContentRoot(contentRoot)

            //Web root - by the default it's wwwroot but here is the place where you can change it
            //.UseWebRoot("wwwroot")

            //Startup
            .UseStartup<Startup>()

            .UseConfiguration(config);

        var host = hostBuilder.Build();
        //Let's start listening for requests
        host.Run();
    }
}

可能正在寻找UseWebRoot()和UseContentRoot()。