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
if(!System.IO.Directory.Exists(@"c:\mp_upload")) { System.IO.Directory.CreateDirectory(@"c:\mp_upload"); }