Showing posts with label Creating SubFolder SharePoint Object Model. Show all posts
Showing posts with label Creating SubFolder SharePoint Object Model. Show all posts

Thursday, September 08, 2011

Creating SubFolder in SharePoint 2010

Creating SubFolder in SharePoint 2010
n1="FolderName";           
SPList list = site.Lists.TryGetList("Shared Documents");
           SPFolderCollection cols = list.RootFolder.SubFolders;
           SPFolder docFolder =
 cols.Add("/Shared Documents/" + n1);