Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# making a folder

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

// Create directory temp1 if it doesn't exist
Directory.CreateDirectory(path2);
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #making #folder
ADD COMMENT
Topic
Name
1+2 =