5

我正在使用 ASP.NET MVC 4,我正在尝试获取上传文件的路径以便打开和操作它。这就是我进行的方式:

控制器

public ActionResult Bulk(HttpPostedFileBase file)
{
    FileStream fs = System.IO.File.Open(Server.MapPath(file.FileName), 
                                         FileMode.Open, FileAccess.Read);

    return RedirectToAction("Index");
}

看法

@{
    ViewBag.Title = "Index";
}

<h2>Index</h2>

    @using (Html.BeginForm("Bulk", "Bulk", null, FormMethod.Post, new 
                                          { enctype = "multipart/form-data" }))
    {
        @Html.ValidationSummary(true)

        <fieldset>
            <p>
                <input type="file" name="file"/>
            </p>
            <div class="form-actions">
              <button type="submit" class="btn btn-primary">Create</button>
            </div>
        </fieldset>
    }

当我这样做时,我收到一个错误,上面写着......Could not find a part of the path ...

如何获取文件实际所在的路径?

4

2 回答 2

4

据我了解,您需要在打开文件之前将文件上传到服务器,例如

 if (file != null && file.ContentLength > 0) 
    {
        // extract only the fielname
        var fileName = Path.GetFileName(file.FileName);
        // store the file inside ~/App_Data/uploads folder
        var path = Path.Combine(Server.MapPath("~/App_Data/uploads"), fileName);
        file.SaveAs(path);
    }

我从 Chance 和 Darin Dimitrov 的类似问题的回答中获取了上述内容:文件上传 ASP.NET MVC 3.0

这个答案还参考了有用的博客文章Uploading a File (Or Files) With ASP.NET MVC

于 2013-07-26T09:05:57.533 回答
2

无法发表评论,因为我没有足够的声誉...... :(

文件夹是否...

C:\Users\maab\Desktop\2013-05-10_BuSI Material Project -Last\BuSIMaterial\BuSIMaterial\App_Data\uploads

存在?如果没有,请尝试手动创建并再次尝试上传。

于 2013-07-26T09:26:40.647 回答