DialogResult result = fbd.ShowDialog();
if (dialogResult == DialogResult.OK && !string.IsNullOrWhiteSpace(fbd.SelectedPath))
{
string folder = "test";
Console.WriteLine(fbd.SelectedPath);
Directory.CreateDirectory(Path.Combine(folder + fbd.SelectedPath));
}
Keep getting Exception Unhandled System.NotSupportedException "The given path's formmat is not supported.'
Tried doing Path Combine, also orignially did 'Directory.CreateDirectory(fbd.selectedpath + folder). I'm fairly novice so this must be a simple fix I cannot find.