Commit 6176646e authored by Riegel's avatar Riegel
Browse files

Fix: Export of ZIP entries in subdirectories

2 merge requests!28Version 3.17.0 Release,!26Add ZIP-archive support
Pipeline #10907 passed with stage
in 2 minutes and 37 seconds
Showing with 1 addition and 0 deletions
+1 -0
......@@ -35,6 +35,7 @@ public class ArchivePacker {
}
CityDoctorModel model = entry.getModel();
Path filePath = tmpDir.resolve(entry.getFullFileName());
Files.createDirectories(filePath.getParent());
model.saveAs(filePath.toString(), model.isValidated());
}
zipFolder(tmpDir.toFile(), outputPath.toFile());
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment