Prüfen, ob ein Verzeichnis existiert

using System.IO;

string sDirString = "c:\\Temp";

if (Directory.Exists(sDirString))
{
}