public List<InputStream> unzip() {
DataFileLog log = DataFileLog.of(this);
try {
WayZip zip = WayZips.unzip(file);
for (WayZipEntry error : zip.getErrors()) {
log.error("Could not unzip entry %s", error.getIOException(), error.getName());
}
return zip.open();
} catch (WayZipException e) {
log.error("Could not open as a ZipFile: %s", e, getPath());
return ImmutableList.of();