gpt4 book ai didi

C# FileContentResult 文件下载到自定义文件夹

转载 作者:行者123 更新时间:2023-11-30 20:29:58 25 4
gpt4 key购买 nike

我正在使用 FileContentResult 方法下载生成的 PDF 文件。运行这段代码后

public FileContentResult genPDF(PDFFileData m)
{
try
{
var FL = generatePDF(m);
var FLBytes = System.IO.File.ReadAllBytes(FL.FullName);
return File(FLBytes, "application/pdf", "PDF_FILE.pdf");
}
finally
{
sendEmail();
}
}

文件默认保存在我的下载文件夹中。我该如何改变它?我想将此文件保存在自定义文件夹中。

最佳答案

当您从 Web 服务器返回文件时,您无法更改默认文件位置,因为该设置是由 Web 浏览器而不是服务器决定的。

例如,如果您使用的是 Chrome,您可以更改设置以询问下载文件的保存位置,而不是自动将文件保存到下载文件夹。

A example of where you can set the prompt to ask you where to save the file in chrome

关于C# FileContentResult 文件下载到自定义文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45501727/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com