3

我必须将上传的文档保存到另一台本地机器中。但我不清楚如何在我的代码中使用模拟。

我使用了以下代码。

protected void btnSave_Click(object sender, EventArgs e)
{
        int result = 0,result1=0;
        string attachmentpath = "C:\\Documents and Settings\\pr84528\\My Documents\\PRABU\\Tech\\Dot Net\\DocumentManager\\Attachments\\";
....................................................................................
....................................................................................
if(fuDocument.HasFile)
    fuDocument.SaveAs(attachmentpath + fuDocument.FileName);
....................................................................................
....................................................................................
}
4

2 回答 2

1

您可以使用 UNC 路径指向您具有写入权限的公共共享。

(例如 \\computerName\PublicShareFolder)

您可以通过 ACL 检查您是否具有权限(为该路径创建一个 DirectoryInfo 对象并为其获取 ACL 以检查您是否具有写入权限),然后您可以写入该路径。

于 2012-12-17T09:48:00.420 回答
0

我认为这是您的解决方案。 http://bytes.com/topic/net/answers/853352-create-text-file-network-path-using-c

于 2012-12-17T09:50:33.500 回答