How to create a Directory using C#?


To create, move and delete directories in C#, the System.IO.Directory class has methods.

Firstly, import the System.IO namespace.

Now, use the Director.CreateDirectory() method to create a directory in the specified path −

string myDir = @"D:\NEW";
if (!Directory.Exists(myDir)) {
   Directory.CreateDirectory(myDir);
}

In the same way, you can create a sub-directory −

string mysubdir = @"C:\NEW\my\";
Directory.CreateDirectory(mysubdir);

Samual Sam
Samual Sam

Learning faster. Every day.

Updated on: 21-Jun-2020

224 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements