Files.createDirectories(destFilePath.getParent());
logger.debug("Copy {} to {}, destFile: {}", sourceStream, destFile, destFilePath);
Files.copy(sourceStream, destFilePath, copyOptions);
} catch (IOException e) {
throw new RuntimeIOException("Exception adding file " + sourceStream + " to " + destZipFile, e);
}
}