cordova-plugin-zeep icon indicating copy to clipboard operation
cordova-plugin-zeep copied to clipboard

Can I unzip a file with password?

Open exonent opened this issue 6 years ago • 2 comments

Hello!

Thx for the plugin. I need to unzip my file using a password. Can I do with your plugin? Whats the command to do "if i can"?

Thx Again!

exonent avatar Oct 02 '18 08:10 exonent

There's a fork here that allows for password encrypt / decrypt

 $cordovaZeep.unzip({
            from : zip,
            to   : extracted,
            password : 'your-password'
        }).then(function() {
            console.log('unzip success!');
        }, function(e) {
            console.log('unzip error: ', e);
        });

Melcus avatar Oct 17 '18 08:10 Melcus

Thx Mate! im going to try it!! :)

exonent avatar Feb 01 '19 08:02 exonent