zip-local
zip-local copied to clipboard
How to zip multiple folder and files
I want compress to multiple file and folder. For example,
const items = [
'./example.txt',
'./example2.txt',
'./example-folder',
'./example2-folder'
]
Zipper.sync.zip(items).compress().save(path);
Is it possible or can I do this with the fs reader?