将文件上传到文件系统

时间:2013-09-26 11:56:52

标签: c# asp.net-mvc asp.net-mvc-3 asp.net-mvc-4

我见过很多使用MVC上传文件的examples

但是,我想采用不同的方法,我想要一点抽象如下:

我想介绍一个FileService,并将其作为依赖项注入控制器。让服务上传文件并返回一个UploadedFile对象。

我现在遇到的一个问题是上传到文件系统或应用程序根目录中的正确位置/目录。

在控制器中,我可以访问Server对象,我可以调用它Server.MapPath并且它具有魔力,下面我无法访问该对象,因为它不是Controller

如何上传到文件系统或项目根目录下的任何位置?

public class FileService : IFileService
{
    private const string UploadBase = "/Files";

    public File UploadFile(HttpPostedFileBase file)
    {
        if (file != null)
        {
            string folder = DateTime.Today.Month + "-" + DateTime.Today.Year;

            string finalFolder = Path.Combine(UploadBase, folder);

            if (!Directory.Exists(finalFolder))
            {
               return Directory.CreateDirectory(finalFolder);
            }


            var filename = UploadFile(file, directoryInfo.Name + "/");


            var newFile = new File { ContentType = file.ContentType, FilePath = filename, Filename = file.FileName };

            return newFile;

        }

        return null;
    }

错误是: The SaveAs method is configured to require a rooted path, and the path '9-2013/037a9ddf-7ffe-4131-b223-c4b5435d0fed.JPG' is not rooted.

1 个答案:

答案 0 :(得分:1)

重新说明评论中注明的内容:

如果要将虚拟路径映射到控制器外部的物理路径,可以始终使用HostingEnvironment.MapPath方法。