private void Form1_Load(object sender, EventArgs e)
{
// A method for setting the colors and other settings.
ColorAndSettings();
// The path of the directory I want to create.
string path = "C:\\Users\\Jay\\Documents\\FileEditor\\Saves";
// A check to see if the directory does not exist.
if (!Directory.Exists(path)) {
// If it don't exist the create the directory at targeted path, set above.
Directory.CreateDirectory(path);
}
}
private void Form1_Load(object sender, EventArgs e)
{
// A method for setting the colors and other settings.
ColorAndSettings();
// The path of the directory I want to create.
string path = "C:\\Users\\Jay\\Documents\\FileEditor\\Saves";
// A check to see if the directory does not exist.
if (!Directory.Exists(path)) {
// If it don't exist the create the directory at targeted path, set above.
Directory.CreateDirectory(path);
}
}