I have a directory with some folders that should be skipped and not added to the target ZIP
file. I marked them as hidden on Windows
and I can query this attribute using Java code as follows:
new File("C:\\myHiddenFolder").isHidden();
However, I don't know how to use this with the following Zip4j
-based method to skip adding those respective directories:
public File createZipArchive(String sourceFilePath) throws ZipException, IOException
{
ZipParameters zipParameters = new ZipParameters();
zipParameters.setCompressionMethod(Zip4jConstants.COMP_DEFLATE);
zipParameters.setCompressionLevel(Zip4jConstants.DEFLATE_LEVEL_ULTRA);
zipParameters.setEncryptFiles(true);
zipParameters.setEncryptionMethod(Zip4jConstants.ENC_METHOD_AES);
zipParameters.setAesKeyStrength(Zip4jConstants.AES_STRENGTH_256);
zipParameters.setPassword("MyPassword");
String baseFileName = FileNameUtilities.getBaseFileName(sourceFilePath);
String destinationZipFilePath = baseFileName + "." + EXTENSION;
ZipFile zipFile = new ZipFile(destinationZipFilePath);
File sourceFile = new File(sourceFilePath);
// Recursively add directories
if (sourceFile.isDirectory())
{
File[] childrenFiles = sourceFile.listFiles();
if (childrenFiles != null)
{
for (File folder : childrenFiles)
{
if (folder.isHidden()) // Nope, no recursive checking!
{
// This is the problem, it adds the parent folder and all child folders without allowing me to check whether to exclude any of them...
zipFile.addFolder(folder.getAbsolutePath(), zipParameters);
}
}
}
} else
{
// Add just the file
zipFile.addFile(new File(sourceFilePath), zipParameters);
}
return zipFile.getFile();
}
Note that this method only works when the (hidden) folders are in the most upper level but it should work for any depth.
You can add
zipParameters.setReadHiddenFiles(false);
, zip4j will not add hidden folders and files toZipFile
.To solve this I went with moving all hidden folders out, package the zip file and move the folders back:
A dirty work-around but does the job since
zipParameters.setReadHiddenFiles(false);
is not working as expected: