In this blog we will see how to create a folder in Shared Documents library using SharePoint Object Model. using System; using System.Collections.Generic; using System.Linq; using System.Text; using Microsoft.SharePoint; using System.Collections; namespace CreateFolder { class Program { static void Main(string[] args) { using (SPSite site = new SPSite("http://serverName/sites/Vijai/")) { using (SPWeb web = site.OpenWeb()) { web.Folders.Add("Shared Documents/Folder"); } } } } }
Code Snippet:
A folder named "Folder" will be created in the Shared Documents library.
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment
It is the same account you read, post and publish with — and you will come straight back to this page.

ankit aroraPosted Aug 4, 2015, 4:33 AM
What if i want to add metadata while creating folder, like department