4.1.0 • Published 5 years ago
filecopy v4.1.0
filecopy
Copy files.
Installation
npm install filecopy --save
Usage
Copy a Single File
#!/usr/bin/env/node
'use strict'
const filecopy = require('filecopy')
filecopy('src/some-text01.txt', 'dest/some-text01-copy.txt', {
mkdirp: true
}).then(() => {
/* ... */
});
Copy Multiple Files
#!/usr/bin/env node
'use strict'
const filecopy = require('filecopy')
// Copy all files in src directory to dir.
filecopy('src/*.txt', 'dest', {}).then(() => {
/* ... */
})
License
This software is released under the MIT License.
4.1.0
5 years ago
4.0.2
6 years ago
4.0.1
7 years ago
4.0.0
8 years ago
3.0.1
8 years ago
3.0.0
8 years ago
2.1.2
9 years ago
2.1.1
9 years ago
2.1.0
9 years ago
2.0.2
9 years ago
2.0.1
9 years ago
2.0.0
9 years ago
1.0.8
10 years ago
1.0.7
10 years ago
1.0.6
10 years ago
1.0.5
10 years ago
1.0.4
10 years ago
1.0.3
10 years ago
1.0.2
10 years ago
1.0.1
10 years ago
1.0.0
10 years ago