I'm creating a tzp file using TrueZip 7, and the cp_rp method to add all directory contents at once to the tzp file.
After that, I'm trying to extract all contents of the tzp file to a target directory. However, the call:
zipFile = new TFile("test.zip");
public void extract(TFile file){
for (TFile iFile : zipFile.listFiles()){
if(iFile.isDirectory()){
extract(iFile);
}else{
File output = new File(iFile.getPath());
iFile.mv(output);
}
}
}
Fails with an error: java.io.IOException: [path]\test.zip\Myjar.jar (destination exists already). If I use cp instead of mv, then the error is [path]\test.zip\Myjar.jar (contained in [path]\test.zip\Myjar.jar)
The problem also seems to be that TrueZip identifies zips and jars as both directories and archives, so when doing a isDirectory() on them, this succeeds, and doing a listFiles() returns all files contained within, so running a cp() on files recursively causes all jar/zip contents to be copied as directories.
What is the correct way of extracting these archive files without expanding them?