Blog

Programmatically check if the folder exists in the SharePoint 2010 site

Posted by Vijai Anand Blogs | SharePoint 2010 Dec 04, 2012
In this blog you will see how to check if the folder exists using SharePoint Object Model
In this blog you will see how to check if the folder exists 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 CheckIfFolderExists

{

    class Program

    {

        static void Main(string[] args)

        {

            using (SPSite site = new SPSite("http://serverName/sites/Vijai/"))

            {

                using (SPWeb web = site.OpenWeb())

                {

                    if (web.GetFolder("Shared aaaaa").Exists)

                    {

                        Console.WriteLine("Folder exists");

                    }

                    else

                    {

                        Console.WriteLine("Folder does not exists");

                    }

                    Console.ReadLine();

                }

            }

        }

    }

}

post comment
     
COMMENT USING
PREMIUM SPONSORS
DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and add new content to existing PDF documents from within your applications.
Get Career Advice from Experts
SPONSORED BY
  • PDF reports have never been easier to create. With our included WYSIWYG Designer, you can layout your reports, set up your data source and let DynamicPDF ReportWriter do the rest.