我在客户端上传了pdf文件。
我将路径位置传递给.ashx file
,由此我在字符串变量中有路径位置。我需要将此文件保存在该路径位置。
请帮忙。
假设rootPath
是一个包含根路径的变量,并且fileName
是您要保存的文件的名称:
var filePath = System.IO.Path.Combine(rootPath, fileName);
我不知道该文件以什么形式存在。如果您包含该文件,我可以filePath
从那里就如何处理提供更好的说明。
using (var outputStream = File.Open(filePath, FileMode.CreateNew))
{
// write to outputStream; depends on what form your PDF file is in at this point.
}