pull/1002/head
Tyrrrz 2 years ago
parent 53b8927fce
commit 0fdab76a74

@ -25,7 +25,14 @@ public static class ExportWrapper
static ExportWrapper() static ExportWrapper()
{ {
Directory.Delete(DirPath, true); try
{
Directory.Delete(DirPath, true);
}
catch (DirectoryNotFoundException)
{
}
Directory.CreateDirectory(DirPath); Directory.CreateDirectory(DirPath);
} }

Loading…
Cancel
Save