在SharePoint中创建文档库时出错

时间:2011-12-19 09:47:23

标签: c# sharepoint sharepoint-2010

我在sharepoint中创建文档库时遇到此错误。

此网站中已存在具有指定标题的列表,调查,讨论区或文档库。请选择其他标题。

这是我的编码。

                SPSite site = new SPSite(url);
                SPWeb oWebsite = site.OpenWeb();
                oWebsite.AllowUnsafeUpdates = true;
                Guid customListID = oWebsite.Lists.Add(docLibraryName, docLibraryName, SPListTemplateType.DocumentLibrary);
                oWebsite.Update();
                oWebsite.AllowUnsafeUpdates = false;

感谢。

更新

忘记提及没有这样的文档库,其中包含我要添加的名称。

1 个答案:

答案 0 :(得分:4)

使用SharePoint设计器并连接到该网站。您可能会发现已创建具有该名称的文件夹,这导致代码认为该列表已存在。删除该文件夹,您应该全部设置。