fs-multi-copy
v2.0.0
Published
Copy multiple files
Downloads
7
Readme
fs-multi-copy
Node.JS copy multiple files
Installation
npm install fs-multi-copy -Sor
yarn add fs-multi-copyHow to use
const mc = require('fs-multi-copy')
mc([
{
from: 'tmp.0',
to: 'tmp.0.out'
},
{
from: 'tmp.1',
to: 'tmp.1.out'
}
]).then(() => {
// copied
}).catch(err => {
// something wrong happened
})