Answers for "creat directory c#"

C#
2

how to create directory folder in c#

string subPath ="ImagesPath"; // Your code goes here

bool exists = System.IO.Directory.Exists(Server.MapPath(subPath));

if(!exists)
    System.IO.Directory.CreateDirectory(Server.MapPath(subPath));
Posted by: Guest on July-15-2021
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

C# Answers by Framework

Browse Popular Code Answers by Language