SPContentType.ResourceFolder Property
Gets the content type's resource folder.
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: Yes
Available in SharePoint Online
The following example is a console application that displays information about the resource folder for every content type on every list in a Web site. As it iterates through the lists and their content types, the application collects the total size of files in each resource folder and prints an accumulated total to the console at the end of the run.
using System; using Microsoft.SharePoint; namespace Test { class ConsoleApp { static void Main(string[] args) { using (SPSite site = new SPSite("http://localhost")) { using (SPWeb web = site.OpenWeb()) { long resourceSize = 0; foreach (SPList list in web.Lists) { foreach (SPContentType ct in list.ContentTypes) { resourceSize += ResourceFolderInfo(list, ct); } } Console.WriteLine("\nTotal size of files in all resource folders = {0} bytes", resourceSize.ToString()); } } Console.Write("\nPress ENTER to continue..."); Console.ReadLine(); } private static long ResourceFolderInfo(SPList list, SPContentType ct) { if (list == null || ct == null) throw new ArgumentException(); SPFolder fldr = ct.ResourceFolder; long total = 0; Console.WriteLine("\nContent type name: {0}", ct.Name); Console.WriteLine("Relative path to resource folder: {0}", fldr.ServerRelativeUrl); Console.Write("Files in folder:"); foreach (SPFile file in fldr.Files) { Console.WriteLine(" {0}", file.Name); total += file.Length; } Console.WriteLine(); return total; } } }