Programmatically create a folder in SharePoint 2010 document library

In this blog we will see how to create a folder in Shared Documents library using SharePoint Object Model.

Code Snippet:

 

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");

                }

            }

        }

    }

}


A folder named "Folder" will be created in the Shared Documents library.