Answers for "Create a Folder structure with c#"

C#
2

how to create a folder in c#

// Directory class is in the System.IO namespace
Directory.CreateDirectory(dir);
Posted by: Guest on March-06-2021
1

c# making a folder

string path1 = @"C:temp";
string path2 = Path.Combine(path1, "temp1");

// Create directory temp1 if it doesn't exist
Directory.CreateDirectory(path2);
Posted by: Guest on May-17-2020

Code answers related to "Create a Folder structure with c#"

C# Answers by Framework

Browse Popular Code Answers by Language