In our last Flash / AIR project we are working with tons of automations to create files, save them on computer, download files from the web and so on.
A library that I think could be interesting not only for us but also for other people that will work with zip files is FZIP from codeazur.
I saw it a couple of years ago and finally I used it, I think it’s so cool for your desktop or web projects based on Flex, Flash or AIR.
Working with FZIP is so easy, if you want to add a file into a new zip file you only write:
var zip:FZip = new FZip(); zip.addFile(f.name, f.data); //f is a File object instance
You can also set a particular position for your file with addFileAt method, remove a file, read each file and working with it without using any different language; all with Actionscript 3!
When you are ready to create your zip file you can save it with FileStream object like this:
var ba:ByteArray = new ByteArray(); zip.serialize(ba) ba.position = 0; var finalZIP:File = File.desktopDirectory.resolvePath("AIRZIPPER.zip"); var fs:FileStream = new FileStream(); fs.open(finalZIP, FileMode.WRITE); fs.writeBytes(ba); fs.close();
One of the main thing that could be interesting to know about FZIP is that library doesn’t read zip file with data descriptor like you can read on official website in Limitations paragraph:
FZip generally can’t read ZIPs that make use of Data Descriptors. Examples of such ZIPs are those created by the Mac OS X Archiver utility, SWCs, JARs, etc.
You can download it for free from this link (I think they are on dedicated servers), I hope that you enjoy it and if you have any requests feel free to ask me via email or adding a comment to this post!
A better option would be to use the nochump library which doesn’t have the limitations of FZip. You can find examples of using the nochump library on my blog. http://pradeek.blogspot.com/search/label/nochump
I really doesn’t know it! thank you so much to share it 😀