1.0.3 • Published 10 months ago

@iqtech84/capacitor-plugin-zip v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

capacitor-plugin-zip

Zip or Unzip (Android & iOS)

Install

npm install @iqtech84/capacitor-plugin-zip

Usage

import { Zip } from '@iqtech84/capacitor-plugin-zip';

Zip.zip({
    source : source,
    destination: destination,
    password: 'password', // Optional
});

Zip.unZip({
    source : source,
    destination: destination,
    overwrite: true, // Optional default true
    password: 'password', // Optional
});

Zip.addListener('progress', (r) => {
    var progress = r.progress;
    var completed = r.completed; // true or false  
})

Interfaces

ZipOptions

PropType
sourcestring
destinationstring
passwordstring

UnZipOptions

PropType
sourcestring
destinationstring
overwriteboolean
passwordstring
1.0.3

10 months ago

1.0.2

10 months ago

1.0.1

10 months ago

1.0.0

10 months ago