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

}

}

}

}

}