Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

how to create a new folder with c#

string dir = @"C:	est";
// If directory does not exist, create it
if (!Directory.Exists(dir))
{
    Directory.CreateDirectory(dir);
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #create #folder
ADD COMMENT
Topic
Name
3+5 =