Squadron Empty List Add-in





0/5 (0 vote)
A new add-in inside the Squadron for SharePoint 2010 tool.
Introduction
In this article we can explore a new add-in inside the Squadron for SharePoint 2010 tool.
Empty List Addin
The Empty List add-in can be applied for:
- Lists
- Libraries
The add-in performs the following:
- Empty the list or library by deleting all items
- Delete the list or library
The add-in is a quick utility as it helps in one click emptying/deleting of multiple lists/libraries.
Squadron is a SharePoint 2010 tool containing multiple add-ins. You can download the tool freely from CodePlex using the following URL: http://squadron2010.codeplex.com/.
After downloading and installing, you can run the Squadron tool from Start menu > Squadron.
EMPTY Operation
Click on the Empty List item from the left pane. You will get the following screen with Lists and Libraries listed.
The Lists and Libraries are selected based on the URL, hidden properties. You can change the URL from the URL text box given.
Now we are going to perform the EMPTY operation. Please note that all the entries in the selected lists will be deleted. You can manually select the list/library to perform the EMPTY operation.
To select all the lists/libraries, use the context menu associated to Check All / Uncheck All.
After selecting the list, click on the Empty Selected button from the right hand side.
Please note that the selected Tasks list contains the following data before the operation.
On clicking the Empty Selected button, you will get the following prompt.
You can click the Yes button to continue if you are sure about deleting all items in the selected list. Now returning to the SharePoint list, you can see the items are deleted.
This concludes our EMPTY operation.
The Show Count check box shows the item count of each list or library.
The Show Hidden check box shows the hidden lists and libraries (including Quick Launch, System).
DELETE Operation
Now we can try the DELETE operation. Please note that the DELETE operation deletes the selected lists and libraries. For performing this operation I prefer you use a temporary site with lists and libraries.
After selecting the items, click the Delete Selected button. You will get the following confirmation dialog.
On confirming yes, the selected items are deleted. You will see the items missing in the next refresh.
Code
Following is the code for an EMTPY operation.
private void PerformEmpty()
{
using (SPSite site = new SPSite(SquadronContext.Url, SquadronContext.GetUserToken()))
{
using (SPWeb web = site.OpenWeb())
{
foreach (string title in NameList.CheckedItems)
{
SPList list = web.Lists[title];
int count = list.Items.Count;
for (int x = list.Items.Count - 1; x >= 0; x--)
{
list.Items[x].Delete();
}
SquadronContext.WriteMessage(title +
" EMPTY performed by deleting " + count.ToString() + " items");
}
}
}
SquadronContext.WriteMessage("Performed Empty operations.");
}
Following is the code for a DELETE operation.
private void PerformDelete()
{
using (SPSite site = new SPSite(SquadronContext.Url))
{
using (SPWeb web = site.OpenWeb())
{
foreach (string title in NameList.CheckedItems)
{
SPList list = web.Lists[title];
try
{
list.Delete();
SquadronContext.WriteMessage(title + " DELETE done.");
}
catch (Exception ex)
{
SquadronContext.WriteMessage("DELETE Exception for " + title + " " + ex.ToString());
}
}
}
}
SquadronContext.WriteMessage("Performed DELETE operations.");
RefreshList();
}
References
http://squadron2010.codeplex.com/
Summary
In this article we have explored the EMPTY and DELETE operations of the Squadron for SharePoint 2010 tool. I repeat that this tool is free for use and in the long run there should be more and more utilities incorporated.