puresourcecode.com
Create a File or Folder
// Specify a name for your top-level folder. string folderName = @”c:Top-Level Folder”; // To create a string that specifies the path to a subfolder under your // top-level folder, add a name for the subfolder to folderName. string pathString = System.IO.Path.Combine(folderName, “SubFolder”); // You can write out the...
Enrico