Qt 4 - QuaZip - File size limitation and memory issue

490 Views Asked by At

I use Qt 4 to build a Symbian Application.

The app use Quazip library to unzip a file. It's work well if the file size under 13mb.

But if the file size larger than 13mb. it cannot unzip.

Is there any memory issue or file size limitation in QuaZip Library and Symbian Qt 4 ?

Thanks.

1

There are 1 best solutions below

0
On

QuaZIP access files inside ZIP archives using QIODevice API.

Based on your implementation choice i.e. the memory required by the concrete QIODevice subclass you use (QTextStream, QDataStream, QTcpSocket ...) you may run out of memory in environment where memory size is an issue.