ARTICLE
Create Folder using C#
This article provides a few steps to create a folder which will be easy to follow.
Article Extensions
using System.IO;
public void CreateFolder
{
string path = @"c:\folders\newfolder"; // or whatever
if (!Directory.Exists(path))
{
Directory.CreateDirectory(path);
}
}