Hi all
I used ArchiverPlus libray to zip a folder as follows :
But the output is a correpted zip file, Where is my mistake?
I used ArchiverPlus libray to zip a folder as follows :
B4X:
Dim arc As ArchiverPlusZip
arc.ZipCompression = True
Dim Const InputFolder As String = File.Combine("d:\1", "") & "\"
arc.AddFolderToZip(InputFolder,InputFolder & "abc.zip", "")
Do While arc.ZipResultCode = arc.ZIP_RESULT_WORKING
Sleep(0)
Loop
But the output is a correpted zip file, Where is my mistake?