我尝试在 Sharepoint 中清除一个非常大的列表。由于 Sharepoints 删除机制缓慢,我决定从该列表中保存一个模板(没有数据),删除该列表,然后从该模板创建一个新列表。代码如下:
public static void TruncateList(SPList list)
{
SPSecurity.RunWithElevatedPrivileges(delegate()
{
using (SPSite site = new SPSite(list.ParentWeb.Site.ID))
{
using (SPWeb web = site.OpenWeb())
{
web.AllowUnsafeUpdates = true;
SPList listCopy = web.Lists[list.ID];
string title = listCopy.Title;
string description = listCopy.Description;
string backupName = string.Format("BACKUP_{0}", title);
// Delete old Template if exists:
SPList gallery = web.Lists["List Template Gallery"];
foreach (SPListItem item in gallery.Items)
{
if (item.Title == backupName)
{
item.Delete();
break;
}
}
// Save Template:
listCopy.SaveAsTemplate(backupName, backupName, string.Empty, false);
// Load Template:
SPListTemplate template = web.Site.GetCustomListTemplates(web)[backupName];
template = web.ListTemplates[backupName];
// Delete List:
listCopy.Delete();
// Add empty List from Template: [HANGS HERE!]
web.Lists.Add(title, description, template);
web.Update();
web.AllowUnsafeUpdates = false;
}
);
}
}
}
保存模板工作正常以及删除需要一段时间的原始列表 (listCopy.Delete())
但是当尝试再次创建该列表(web.Lists.Add)时,服务器卡住了,直到几分钟后它得到一个超时异常。
值得一提的是:这是我的开发者机器。除了我之外,没有人正在访问该网络/列表