1

我有一个用 c# 编写的应用程序,在创建 pdf 文件后,需要将此 pdf 文件保存到远程服务器中的虚拟文件夹中。服务器在 DMZ 中,我已经在两台服务器中创建了两个具有相同权限的用户。两台服务器不在同一个网络中。我可以使用访问虚拟 pdf 文件

string stempSourceFilespec = "https://ServerName/VirtualFolder/dummy.pdf";
b = file bytes;
//Here I write the bytes
System.IO.File.WriteAllBytes(stempSourceFilespec, b)

,但是在将 pdf 文件复制到同一虚拟目录时遇到问题。我正在使用的用户对该文件夹具有完全权限。

这在使用 \servername\folder\ 时在内部起作用,但在我尝试保存到远程虚拟目录时不起作用。有什么想法吗?

4

1 回答 1

0

尝试在处理程序中将 virtualpath 转换为 phyicalpath,例如 system.web.httpserverUtil.mappath

http://asp.net.bigresource.com/Uploading-files-to-server-and-saving-outside-virtual-path-bMVjFTYf4.html#l9LpkWyji

http://forums.iis.net/t/1157234.aspx

于 2013-08-07T14:51:33.113 回答