如何在磁盘上写入 FileContentResult?

Posted

技术标签:

【中文标题】如何在磁盘上写入 FileContentResult?【英文标题】:How do I write FileContentResult on disk? 【发布时间】:2014-09-17 11:58:19 【问题描述】:

我正在尝试使用Rotativa 组件将发票的副本永久存储(不显示)在网络服务器磁盘上。两个问题:

    为什么需要指定控制器操作? (“索引”,在此 案例) 如何将 FileContentResult 写入本地磁盘而不 显示它?

谢谢。

这是我的代码:

    [HttpPost]
    public ActionResult ValidationDone(FormCollection formCollection, int orderId, bool fromOrderDetails)
    
        Order orderValidated = context.Orders.Single(no => no.orderID == orderId);

        CommonUtils.SendInvoiceMail(orderValidated.customerID , orderValidated.orderID);

        var filePath = Path.Combine(Server.MapPath("/Temp"), orderValidated.invoiceID + ".pdf");

        var pdfResult = new ActionAsPdf("Index", new  name = orderValidated.invoiceID )  FileName = filePath ;

        var binary = pdfResult.BuildPdf(ControllerContext);

        FileContentResult fcr = File(binary, "application/pdf");

        // how do I save 'fcr' on disk?
 

【问题讨论】:

【参考方案1】:

您不需要 FileContentResult 来创建文件。你已经得到了可以直接保存到磁盘的字节数组:

var binary = pdfResult.BuildPdf(ControllerContext);
System.IO.File.WriteAllBytes(@"c:\foobar.pdf", binary);

【讨论】:

【参考方案2】:

string FileName="YOUR FILE NAME"; //首先给文件命名

string Path=Server.MapPath("YourPath in solution"+Filename+".Pdf")

//给出你的路径和文件扩展名。两者都是必需的。

binary[]= YOUR DATA

//描述要保存为文件的数据。

System.IO.File.WriteAllBytes(Path, binary);

很简单...

【讨论】:

以上是关于如何在磁盘上写入 FileContentResult?的主要内容,如果未能解决你的问题,请参考以下文章

在磁盘上读取/写入文件时如何限制硬盘 I/O?

如何优化mysql写入速

如何使用 .Net 直接写入磁盘?

如何在不写入磁盘的情况下将 AWS S3 上的文本文件导入 pandas

使用C直接读/写磁盘[重复]

为啥用C#在磁盘上写入文件后内存没有释放