How can I check if directory C:/
contains a folder named MP_Upload
, and if it does not exist, create the folder automatically?
I am using Visual Studio 2005 C#.
This should help:
using System.IO;
...
string path = @"C:\MP_Upload";
if(!Directory.Exists(path))
{
Directory.CreateDirectory(path);
}