()
| 28 | } |
| 29 | |
| 30 | public static Path getSupportPath() throws IOException { |
| 31 | Path supportPath = SupportPath.getPlatformSupportPath("Defold"); |
| 32 | if (!Files.exists(supportPath)) { |
| 33 | Files.createDirectories(supportPath); |
| 34 | } |
| 35 | return supportPath; |
| 36 | } |
| 37 | |
| 38 | public static Path getLogDirectory() throws IOException { |
| 39 | String defoldLogDir = System.getProperty("defold.log.dir"); |
no test coverage detected