视频文件未保存在文件夹中

本文关键字:文件夹 存在 保存 文件 视频 | 更新日期: 2023-09-27 18:36:22

我正在尝试使用HttpFileCollection在文件夹中上传视频文件,但似乎它没有保存在文件夹中。它给出一个错误,尽管路径正确,但它找不到路径。 这是我的代码

   <form id="form1" runat="server">
<div>
    <asp:Image ID="Image1" ImageUrl="~/ProductVideos/" runat="server" Width="118px" />
</div>
    <asp:FileUpload ID="FileUpload1" runat="server" />
    <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Button" />
</form>

C# 代码:

   protected void Button1_Click(object sender, EventArgs e)
    {
        UploadVideoToFolder();
    }
     public string UploadVideoToFolder()
    {
        string vTitle = "";
        string vDesc = "";
        string FilePath = HttpContext.Current.Server.MapPath("~/ProductVideos/" + HttpContext.Current.Request.Form["title"]);

        HttpFileCollection MyFileCollection = HttpContext.Current.Request.Files;
        if (MyFileCollection.Count > 0)
        {
            // Save the File
            try
            {
                MyFileCollection[0].SaveAs(FilePath);
                return "1";
            }
            catch (Exception ex)
            {
                return "-1";
            }
        }
        else
            return "-1";

请帮我做这件事。

视频文件未保存在文件夹中

试试这段代码。

        string filename = Path.GetFileName(FileUpload1.FileName);
        HttpFileCollection MyFileCollection = HttpContext.Current.Request.Files;
        if (MyFileCollection.Count > 0)
        {
            try
            {
                MyFileCollection[0].SaveAs(Server.MapPath("~/ProductVideos/") + filename);
             }
            catch (Exception ex)
            {
            }
        }

请参考以下代码:

您必须在代码中添加 for 循环,如下所示:

HttpFileCollection MyFileCollection  = Request.Files;
for (int i = 0; i < MyFileCollection .Count; i++)
{
    HttpPostedFile httpPostedFile = MyFileCollection [i];
    if (httpPostedFile.ContentLength > 0 )
    {
    }
}