Add check that shouldn't need to be checked

Somehow on tests, the temp folder would render itself unfindable, and thus made the program crash.
This commit is contained in:
Matt Nadareski
2016-04-11 16:11:20 -07:00
parent aa5cf24237
commit a95a9e1497

View File

@@ -95,7 +95,10 @@ namespace SabreTools
} }
// Delete the temp directory // Delete the temp directory
Directory.Delete(_tempDir, true); if (Directory.Exists(_tempDir))
{
Directory.Delete(_tempDir, true);
}
} }
// Order the roms by name of parent, then name of rom // Order the roms by name of parent, then name of rom