0

我正在尝试从浏览器上传文件并将其复制到 URL 文件夹

使用升c。

(我拥有此文件夹的所有权限)

我没有问题将文件上传到我的硬盘

像这样:

HttpPostedFileBase myfile;

var path = Path.Combine(Server.MapPath("~/txt"), fileName);

myfile.SaveAs(path);

我尝试将它上传到这样的 URL,但我遇到了异常

HttpPostedFileBase myfile;

var path =VirtualPathUtility.ToAbsolute("http://localhost:8080/game/images/"+fileName);

myfile.SaveAs(path);

例外:

System.ArgumentException: The relative virtual path 'http:/localhost:8080/game/images/ a baby bottle. Jpg' is not allowed here.
    In - System.Web.VirtualPath.Create (String virtualPath, VirtualPathOptions 
4

2 回答 2

2

您不能将文件上传到远程位置。如果你想让它工作,你必须修改远程服务器,使其接受文件上传,就像你的服务器接受文件上传一样,然后使用WebClient. 您不能使用该SaveAs方法,因为它需要本地路径。

您可以进行以下控制器操作:

[HttpPost]
public ActionResult Upload(HttpPostedFileBase myFile)
{
    if (myFile != null && myFile.ContentLength > 0) 
    {
        var fileName = Path.GetFileName(myFile.FileName);
        var path = Path.Combine(Server.MapPath("~/App_Data"), fileName);
        myFile.SaveAs(path);
    }    

    ...
}

以及带有文件输入的相应表单:

@using (Html.BeginForm("Upload", null, FormMethod.Post, new { enctype = "multipart/form-data" }))
{
    <input type="file" name="myFile" />
    <button type="submit">Click this to upload the file</button>
} 
于 2013-03-11T13:33:09.807 回答
0

你应该使用Server.MapPath("Path")

var path = Server.MapPath("~/images/") + fileName);
myfile.SaveAs(path);
于 2013-03-11T13:34:10.910 回答