How can I check if directory
C:/
MP_Upload
This should help:
using System.IO; ... string path = @"C:\MP_Upload"; if(!Directory.Exists(path)) { Directory.CreateDirectory(path); }