我正在使用剑道ui图表导出到pdf功能。我使用MVC控制器将其返回给客户端,这很好。我还想将pdf文件保存到一个文件夹中。我能同时做这两件事吗?
[HttpPost]
public ActionResult Save(string contentType, string base64)
{
var fileContents = Convert.FromBase64String(base64);
var dt = DateTime.Now.ToString("d").Replace('/', '-').Replace(':', '-');
var fileName = string.Format("{0}--{1}.pdf", "SubjectProperty", dt);
string path = Path.Combine(Server.MapPath("~/Pdfs/"), Path.GetFileName(fileName));
return File(fileContents, contentType, fileName);
}
在返回语句之前,将文件内容写入您生成的文件路径:
File.WriteAllBytes(path,fileContents);