我有一些客户端代码可以将 Outlook 电子邮件上传到文档库,只要路径指向文档库的根目录,它就可以正常工作。
@"https://<server>/sites/<subweb>/<customer>/<teamweb>/<Documents>/" + docname;
是这个函数中的 projectUrl :
public bool SaveMail(string filepath, string projectUrl)
{
try
{
using (WebClient webclient = new WebClient())
{
webclient.UseDefaultCredentials = true;
webclient.UploadFile(projectUrl, "PUT", filepath);
}
}
catch(Exception ex)
{
//TO DO Write the exception to the log file
return false;
}
return true;
}
但我无法弄清楚如何上传到现有文件夹,即同一文档库中的“电子邮件”。甚至谷歌似乎都不知道答案:-)
注意:我知道我可以使用 SharePoint 中的复制 Web 服务之类的东西将文件移动到其最终目标,但这更像是一种解决方法。
我什么时候才能学会不工作到深夜:-(
对不起那个问题。Igalse 是对的,我只需要在 URL 中添加“emails/”。我可以发誓我曾尝试过,但话又说回来,看起来我没有。