When my Windows Form Loads it run the following code
Directory.CreateDirectory(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), "F.U.T.U.R.E"));
Which therefor create a folder with the name "F.U.T.U.R.E" Inside MyDocuments Directory. Now I would like to create another Folder when I press on a button inside the existing folder "F.U.T.U.R.E" .
private void button1_Click(object sender, EventArgs e)
{
// Create Sub Folder into My.Documents."F.U.T.U.R.E"
}
Can anyone help me with the codes.