得到错误消息:“无法找到路径的一部分”

本文关键字:路径 一部分 错误 消息 | 更新日期: 2023-09-27 18:14:41

我创建了一个文件夹(文件),我想在我点击按钮(btnGenerate_Click)后,它应该创建一个pdf文件,并将其保存到文件夹中,名为"文件"。但我不断得到错误信息:"找不到路径的一部分"C:'User'VS'Intra'Intra。Admin'File'"但是路径位置是正确的....

protected void btnGenerate_Click(object sender, EventArgs e)
        {
            string FilePath = MapPath("~/File/"); //here!
             
            iTextSharp.text.Document pdfDoc = new iTextSharp.text.Document(iTextSharp.text.PageSize.A4, 20f, 20f, 20f, 20f);
            PdfWriter.GetInstance(pdfDoc, new FileStream(FilePath, FileMode.Create));
            StringWriter sw = new StringWriter();
            HtmlTextWriter hw = new HtmlTextWriter(sw);
            GridView1.AllowPaging = false;
            GridView1.HeaderRow.Cells[1].Text = "Message";
            GridView1.HeaderRow.Font.Bold = true;
            GridView1.RenderControl(hw);
            StringReader sr = new StringReader(sw.ToString());
            HTMLWorker htmlparser = new HTMLWorker(pdfDoc);
            PdfWriter.GetInstance(pdfDoc, Response.OutputStream);
            pdfDoc.Open();
            htmlparser.Parse(sr);
            pdfDoc.Close();
            Response.Write(pdfDoc);
            Response.ContentType = "Application/pdf";
            Response.WriteFile(FilePath);
            Response.End();
        }

得到错误消息:“无法找到路径的一部分”

FilePath是一个目录。您应该附加一个文件名,就像这样:

string FilePath = MapPath("~/File/" + fileName);