filecopy

v1.0.2
Copy files.
file copy

filecopy

Build Status npm Version JS Standard

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.

Metadata

  • MIT
  • Whatever
  • Taka Okunishi
  • released 8/8/2015

Downloads

Maintainers