I'm having an issue with the following code:
TFile src = new TFile(this.getMellomStasjon());
TFile dst = new TFile(this.getZipFolder()+""+zipFile+".zip");
if(dst.isDirectory())
dst = new TFile(dst, src.getName());
TFile.cp_rp(src, dst, null);
TFile file = newNonArchiveFile(dst);
if(dst.isArchive())
TFile.umount(dst);
My goal is to put a directory containing files into a ZIP-archive using TrueZip. The problem is that the code works locally but not on the production computer. Locally I get a single ZIP-file, but in production I get a folder containing the files I'm trying to put in the archive (virtual directory). I have to use TrueZip because I'm archiving content over 4GB.
Is there any way to force TrueZip to create an archive instead of a (virtual) directory?