Skip to content

chaddjohnson/unzip-wrapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

unzip-wrapper

This package wraps the native 'unzip' binary on *NIX machines.

Usage:

unzip(archivePath, [options], [callback]);

Example:

var unzip = require('unzip-wrapper');
unzip('/path/to/file.zip', {fix: true}, function(err) {
    if (err) {
        console.log(err.message);
        return;
    }

    console.log('Unzipping done!');
});

You can also pass options:

var options = {
    fix: true,
    target: '/path/to/target/dir'
};
unzip('/path/to/file.zip', options);

The following options are available:

  • fix -- Whether to check for and attempt to fix any errors with the archive. Defaults to false.
  • target -- The target directory. Defaults to the archive's directory.

About

Node wrapper for native unzip *NIX binary

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published