mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-15 09:17:42 +00:00
Merge pull request #1561 from mhmdfy/7zipfix
adding underscore between file name and item index
This commit is contained in:
commit
0962851a4b
@ -459,7 +459,7 @@ class SevenZipExtractor {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
final String uniqueExtractedName = uniqueArchiveFileName + File.separator + (item.getItemIndex() / 1000) + File.separator + item.getItemIndex() + new File(pathInArchive).getName();
|
final String uniqueExtractedName = uniqueArchiveFileName + File.separator + (item.getItemIndex() / 1000) + File.separator + item.getItemIndex() + "_" + new File(pathInArchive).getName();
|
||||||
|
|
||||||
//final String localRelPath = unpackDir + File.separator + localFileRelPath;
|
//final String localRelPath = unpackDir + File.separator + localFileRelPath;
|
||||||
final String localRelPath = moduleDirRelative + File.separator + uniqueExtractedName;
|
final String localRelPath = moduleDirRelative + File.separator + uniqueExtractedName;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user