Skip to content

arenevier/zipfile

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

**ZipFile** is a javascript library to get extract informations from zip files.

A ZipFile object can be constructed with a _String_ object representing the zip file content.
This object will then have following properties:

 - __filelist__: an _Array_ of ZipInfo: one for each file in archive
 - __NameToInfo__: a hashset of ZipInfo, accessible with file names
 - __data__: a copy of the string content
 - __comment__: optional archive comment

Each ZipInfo will contain many metadatas about the file, such as ''filename'', ''date_time'', ''comment'', etc
Content of a ZipInfo can be retrieved by calling ZipFile.extract(ZipInfo.filename)

You can find example of use in demo.js file

ZipFile needs [deflate library] [1] to work. It's included in the archive.
Jquery.js and collapser.js libraries are also included in the archive. They are
not needed for ZipFile but are used for the demo.

[1]: http://www.codeproject.com/KB/scripting/Javascript_binaryenc.aspx

About

extract infos from zip file in javascript

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published