| @@ -156,12 +156,15 @@ namespace jdis_import | |||||
| } | } | ||||
| private static void SetupDirectories() | private static void SetupDirectories() | ||||
| { | { | ||||
| if (!Directory.Exists("Success")) | |||||
| Directory.CreateDirectory("Success"); | |||||
| if (!Directory.Exists("Fail")) | |||||
| Directory.CreateDirectory("Fail"); | |||||
| if (!Directory.Exists("Log")) | |||||
| Directory.CreateDirectory("Log"); | |||||
| string path = Path.Combine(_exeDir, "Success"); | |||||
| if (!Directory.Exists(path)) | |||||
| Directory.CreateDirectory(path); | |||||
| path = Path.Combine(_exeDir, "Fail"); | |||||
| if (!Directory.Exists(path)) | |||||
| Directory.CreateDirectory(path); | |||||
| path = Path.Combine(_exeDir, "Log"); | |||||
| if (!Directory.Exists(path)) | |||||
| Directory.CreateDirectory(path); | |||||
| } | } | ||||
| public static void GetInspectionTypes() | public static void GetInspectionTypes() | ||||
| { | { | ||||