mirror of
https://github.com/leanote/desktop-app.git
synced 2026-01-14 03:03:35 +08:00
9 lines
256 B
JavaScript
Executable File
9 lines
256 B
JavaScript
Executable File
var AdmZip = require('adm-zip');
|
|
var fs = require('fs');
|
|
// https://github.com/cthackers/adm-zip
|
|
var filePath = './a.zip';
|
|
var zip = new AdmZip(filePath);
|
|
zip.extractAllTo('./cc', true);
|
|
fs.readdir('./cc', function(err, files) {
|
|
console.log(files);
|
|
}); |