I wanna to know How to Create Empty Zip File Using Zip4j Library
Shouldn't this line of code be enough to create an empty zip file? when i am tried it, it isn't work.
ZipFile zipFile1 = new ZipFile(zipFilePath);
my question is for this lib : https://github.com/srikanth-lingala/zip4j
Edit: why all answer told me to create ZipFile nd add file in it then remove that file !! I just wanna create ZipFile directly without any complications, just function get path like "/storage/emulated/0/ZipPro/zipPro.zip" and create this zip file "zipPro.zip"
...................................................................................