1.0.3 • Published 5 years ago

cordova-plugin-ziparchive v1.0.3

Weekly downloads
9
License
GPL-3.0
Repository
github
Last release
5 years ago

Zip / UnZip plugin

Cordova plugin to compress and decompress (zip/unzip) files and folders in *.zip format.

Based on the repository Full credit goes to: https://www.npmjs.com/package/cordova-zip-plugin

Platforms supported

  • android
  • ios

Installation

cordova plugin add cordova-plugin-ziparchive

Easy Use


Use Example

Extract the contents of a directory

        window.ziparchive.unzip(updateZipPath, updateZipDestPath,function onSuccess(data){
             console.log("Unzipped");       
        },function onError(error){
            console.log(`Unzip failed ${error}`);
        })