for(int i=0;i<containedPaths.size();i++) {
File currentFile = containedFiles.get(i);
String currentPath = targetPath.replace("/", "") + File.separator + containedPaths.get(i);
EntryOutputStream loop_out = null;
if(!compress) {
loop_out = zip64File.openEntryOutputStream(currentPath, FileEntry.iMETHOD_STORED, new Date(currentFile.lastModified()));
}
else {
loop_out = zip64File.openEntryOutputStream(currentPath, FileEntry.iMETHOD_DEFLATED, new Date(currentFile.lastModified()));
}
if(currentFile.isFile()) {