|
|
|
@ -339,12 +339,14 @@ public final class Switchboard extends serverSwitch {
|
|
|
|
|
this.workPath.mkdirs();
|
|
|
|
|
// if default work files exist, copy them (don't overwrite existing!)
|
|
|
|
|
File defaultWorkPath = new File("defaults/data/work");
|
|
|
|
|
for (String fs: defaultWorkPath.list()) {
|
|
|
|
|
if (defaultWorkPath.list() != null) {
|
|
|
|
|
for (String fs : defaultWorkPath.list()) {
|
|
|
|
|
File wf = new File(this.workPath, fs);
|
|
|
|
|
if (!wf.exists()) {
|
|
|
|
|
Files.copy(new File(defaultWorkPath, fs), wf);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.log.logConfig("Work Path: " + this.workPath.toString());
|
|
|
|
|
this.dictionariesPath =
|
|
|
|
|