How can I check if directory C:/ contains a folder named MP_Upload, and if it does not exist, create the folder automatically?
C:/
MP_Upload
I am using V
You can try this..
using System.IO;string path = "C:\MP_Upload";if(!Directory.Exists(path)){ Directory.CreateDirectory(path);}