Android Question Lib Archiver - difficulty unzip large file

Marcio Almeida

Member
Licensed User
Longtime User
Hi guys! I'm having difficulty unzip a 13.7mb file. Below the file link and code I currently use:

Code:
arc.UnZip(fileDir, fileZipNameFotos, fileDirFotos, "")
or arc.AsyncUnZip(fileDir, fileZipNameFotos, fileDirFotos, "UnZipFotos")

Link:
http://www.wmesistemas.com.br/temp/fotosprodutos.zip


The strange thing is that with smaller files this is working properly.

Thanks a lot!
 

parijs

Active Member
Licensed User
Longtime User
Hi Marcio,
I use this for 193 MB file en that works fine.

Dim Arc As Archiver
Arc.Unzip(File.DirRootExternal,"HrKetels/ketels.zip", File.DirRootExternal & "/HrKetels",Null)
 
Upvote 0
Top