Utilities to manipulate Compressed Files

Help with the Ecere cross platform system functionality: working with files, threads, timers, databases, etc.
Post Reply
samsam598
Posts: 212
Joined: Thu Apr 14, 2011 9:44 pm

Utilities to manipulate Compressed Files

Post by samsam598 »

Greetings,

Would like to know whether any utils over there to read/write zip/7z/rar format files?

Thanks for the help in advance.
jerome
Site Admin
Posts: 608
Joined: Sat Jan 16, 2010 11:16 pm

Re: Utilities to manipulate Compressed Files

Post by jerome »

Hi Sam,

Yet another forum post that I didn't notice... Sorry.

The goal is that this would be handled by the Ecere File and Archive class.
FileOpen("<myArchive.zip>path/to/file.txt", read) would let you open a file within a ZIP archive whereas the Archive class will handle creating and adding to existing archives.
See ear/cmd and ear/extract for example usage.

The current reality though is that only Ecere Archives (ear) are supported at the moment.

There are libraries available however, and it'd be nice to add support through the File/Archive classes for other archives through modules.

7z: http://www.7-zip.org/sdk.html
zip: http://www.nih.at/libzip/
rar: ftp://ftp.rarlabs.com/rar/unrarsrc-3.7.8.tar.gz
gz: zlib supports that (www.zlib.net)
bz2: http://www.bzip.org/
xz: http://tukaani.org/xz/
tar: Should be simple enough to do ourselves http://en.wikipedia.org/wiki/Tar_(computing)

http://www.libarchive.org/ -- this also supports multiple archive formats

Please let me know if you'd be interested to contribute modules for this :)

Regards,

-Jerome
Post Reply