Create firmware folder if it doesn't exist on Windows; otherwise, an exception is thrown.
This commit is contained in:
parent
b1043dd3ff
commit
867c7fb232
|
@ -359,7 +359,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
private void tbbOpenFolder_Click(object sender, EventArgs e)
|
||||
{
|
||||
var frmWares = PathManager.MakeAbsolutePath(Global.Config.PathEntries.FirmwaresPathFragment, null);
|
||||
if (OSTailoredCode.CurrentOS != OSTailoredCode.DistinctOS.Windows && !Directory.Exists(frmWares))
|
||||
if (!Directory.Exists(frmWares))
|
||||
Directory.CreateDirectory(frmWares);
|
||||
System.Diagnostics.Process.Start(frmWares);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue