// opens the folder in explorer
Process.Start(@"c: emp");
// opens the folder in explorer
Process.Start("explorer.exe", @"c: emp");
// throws exception
Process.Start(@"c:does_not_exist");
// opens explorer, showing some other folder)
Process.Start("explorer.exe", @"c:does_not_exist");