Check if a folder exist in a directory and create them using C# Ask Question

Check if a folder exist in a directory and create them using C# Ask Question

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#.

ベストアンサー1

This should help:

using System.IO;
...

string path = @"C:\MP_Upload";
if(!Directory.Exists(path))
{
    Directory.CreateDirectory(path);
}

おすすめ記事