Returning SharePoint Folder Item Count In C#
A question was posted on the newsgroups on how to build a reusable method that could return the item count from a specified folder, here is one that works just fine:
C#:
-
private int GetItemsForFolderInt(SPFolder folder)
-
{
-
int i = folder.Files.Count;
-
-
foreach (SPFolder myFolder in ((IEnumerable) folder.SubFolders))
-
{
-
i += GetItemsForFolderInt(myFolder);
-
}
-
return i;
-
}
So, you would of course have to use recursion and recall the method itself within the declaration, and the output of this would just an integer.
No Comments »
No comments yet.
RSS feed for comments on this post. TrackBack URL





















Articles & Research
SharePoint Architecture
Personal/Off-Topic
Latest Free SharePoint Software
SecureCenter For SharePoint
SharePoint Security Assurance Program™
Free Online SharePoint Security Tools
Online SharePoint Security Health Assessment
Article Or Research Filed Under 