Answers for "wpf create a folder"

C#
1

c# making a folder wpf

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

C# Answers by Framework

Browse Popular Code Answers by Language