Horje
how to create directory folder in c# Code Example
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));
file.create folder c#
Using System.IO; 

//gets the directory where the program is launched from and adds the foldername
string path = Path.Combine(Environment.CurrentDirectory, "foldername");

//Creates a directory(folder) if it doesen't exist
Directory.CreateDirectory(path);




Csharp

Related
c# check if is float Code Example c# check if is float Code Example
unity 2d detect click on sprite Code Example unity 2d detect click on sprite Code Example
how to convert angle to vector in c# Code Example how to convert angle to vector in c# Code Example
unity pause animator Code Example unity pause animator Code Example
c# print out Code Example c# print out Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11