c# – Web.GetFileByServerRelativeUrl throws“值不在预期范围内”

前端之家收集整理的这篇文章主要介绍了c# – Web.GetFileByServerRelativeUrl throws“值不在预期范围内”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个SP Online网站,我存储文档,我没有添加/检索文档的问题,但在删除流程中,我在检索File对象时收到错误.
public static void DeleteDocument()
{
    using (ClientContext ctx = ClientContextFactory.Create("https://my-sponline-site.sharepoint.com/sites/documentsite"))
    {
        Web web = ctx.Web;
        ctx.Load(web);
        ctx.ExecuteQuery();

        string relativeUrl = "/Documents/images.jpg";

        File file = web.GetFileByServerRelativeUrl(relativeUrl);
        ctx.Load(file);
        file.DeleteObject();

        ctx.ExecuteQuery();
    }
}

文件的完整网址为“https://my-sponline-site.sharepoint.com/sites/documentsite/Documents/images.jpg”(不再可用2016-12-07)

当我执行这个,我得到一个ServerException:

Value does not fall within the expected range.

上下文工作正常,因为我可以从库中添加/检索项目,上下文用户管理员.

我尝试将网址添加到relativeUrl,因此它将是“/documentsite/Documents/images.jpg”,但我收到相同的错误.

我似乎无法想出这一点,有什么建议吗?

谢谢

解决方法

string relativeUrl = "/sites/documentsite/Documents/images.jpg";
原文链接:https://www.f2er.com/csharp/95765.html

猜你在找的C#相关文章