-1

我在客户端上传了pdf文件。

我将路径位置传递给.ashx file,由此我在字符串变量中有路径位置。我需要将此文件保存在该路径位置。

请帮忙。

4

1 回答 1

0

假设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.
}
于 2012-06-19T11:37:42.350 回答