Android Question Archiver only unzipping one file

Tyler

Member
Licensed User
Longtime User
B4X:
zipper.AsyncUnzip(File.DirRootExternal & "/adc", "lists.zip", File.DirRootExternal & "/adc", "zipper")

Sub zipper_UnzipDone(CompletedWithoutError As Boolean, NbOfFiles as Int)
ToastMessageShow("NbOfFiles", False)
End Sub
Hey, so I have a .zip archive with 1 .txt file and 2 folders(each containing one .txt file) inside. Using the default archiver library it's only unzipping the single text file and not the folders or their text files. Am I missing something? I thought this would just unzip everything in the archive, regardless of structure. ToastMessage is showing that NbOfFiles is '-1'.


Any help or guidance would be much appreciated, thanks!
 
Last edited:
Top