在SharePoint中创建文档库时出错
本文关键字:出错 文档 创建 SharePoint | 更新日期: 2023-09-27 18:18:10
我在sharepoint中创建文档库时遇到了这个错误。
具有指定标题的列表、调查、讨论板或文档库已经存在于此Web站点中。
这是我的代码。
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;
谢谢。
更新:
忘记提及没有这样的文档库的名称,我试图添加
使用SharePoint设计器连接到该站点。您可能会发现已经创建了一个具有该名称的文件夹,这会导致代码认为该列表已经存在。删除那个文件夹,你应该都设置好了。