/// <summary>
 /// This button event will create a new downloadable and open up the folder
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void B_CreateAndOpen_Click(object sender, EventArgs e)
 {
     if (Directory.Exists(TB_OutputFolder.Text))
     {
         Process.Start(TB_OutputFolder.Text);
     }
     B_Create.PerformClick();
 }