Perform actions before the Host starts, including creating required directories.
()
| 1568 | * Perform actions before the Host starts, including creating required directories. |
| 1569 | */ |
| 1570 | public void beforeStart() { |
| 1571 | if (host.getCreateDirs()) { |
| 1572 | File[] dirs = new File[] { host.getAppBaseFile(), host.getConfigBaseFile() }; |
| 1573 | for (File dir : dirs) { |
| 1574 | if (!dir.mkdirs() && !dir.isDirectory()) { |
| 1575 | log.error(sm.getString("hostConfig.createDirs", dir)); |
| 1576 | } |
| 1577 | } |
| 1578 | } |
| 1579 | } |
| 1580 | |
| 1581 | |
| 1582 | /** |
no test coverage detected