readme.md
2.38 KB
cp-file
Copy a file
Highlights
- Fast by using streams in the async version and
fs.copyFileSync()
(when available) in the synchronous version. - Resilient by using graceful-fs.
- User-friendly by creating non-existent destination directories for you.
- Can be safe by turning off overwriting.
- User-friendly errors.
Install
$ npm install cp-file
Usage
const cpFile = require('cp-file');
(async () => {
await cpFile('source/unicorn.png', 'destination/unicorn.png');
console.log('File copied');
})();
API
cpFile(source, destination, [options])
Returns a Promise
that resolves when the file is copied.
cpFile.sync(source, destination, [options])
source
Type: string
File you want to copy.
destination
Type: string
Where you want the file copied.
options
Type: Object
overwrite
Type: boolean
Default: true
Overwrite existing file.
cpFile.on('progress', handler)
Progress reporting. Only available when using the async method.
handler(data)
Type: Function
data
{
src: string,
dest: string,
size: number,
written: number,
percent: number
}
-
src
anddest
are absolute paths. -
size
andwritten
are in bytes. -
percent
is a value between0
and1
.
Notes
- For empty files, the
progress
event is emitted only once. - The
.on()
method is available only right after the initialcpFile()
call. So make sure you add ahandler
before.then()
:
(async () => {
await cpFile(source, destination).on('progress', data => {
// …
});
})();
Related
- cpy - Copy files
- cpy-cli - Copy files on the command-line
- move-file - Move a file
- make-dir - Make a directory and its parents if needed
License
MIT Sindre Sorhus