mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 13:16:45 +01:00
Fixes #1234
This commit is contained in:
parent
3b73b2e9d8
commit
da7a12bc00
@ -51,15 +51,20 @@ public class Template extends SubCommand {
|
||||
ZipEntry ze = zis.getNextEntry();
|
||||
byte[] buffer = new byte[2048];
|
||||
while (ze != null) {
|
||||
if (!ze.isDirectory()) {
|
||||
String name = ze.getName().replace('\\', File.separatorChar).replace('/', File.separatorChar);
|
||||
File newFile = new File((output + File.separator + name).replaceAll("__TEMP_DIR__", world));
|
||||
new File(newFile.getParent()).mkdirs();
|
||||
File parent = newFile.getParentFile();
|
||||
if (parent != null) {
|
||||
parent.mkdirs();
|
||||
}
|
||||
try (FileOutputStream fos = new FileOutputStream(newFile)) {
|
||||
int len;
|
||||
while ((len = zis.read(buffer)) > 0) {
|
||||
fos.write(buffer, 0, len);
|
||||
}
|
||||
}
|
||||
}
|
||||
ze = zis.getNextEntry();
|
||||
}
|
||||
zis.closeEntry();
|
||||
|
Loading…
Reference in New Issue
Block a user