read-remove-file
v5.0.1
Published
Read a file, then remove it
Maintainers
Readme
read-remove-file
Read a file, then remove it
const readRemoveFile = require('read-remove-file');
readRemoveFile('path/to/file').then(buf => {
buf; //=> <Buffer ... >
fs.accessSync('path/to/file'); // Error: ENOENT
});Installation
npm install read-remove-fileAPI
const readRemoveFile = require('read-remove-file');readRemoveFile(filePath [, options])
filePath: String
options: Object or String (fs.readFile options)
Return: Promise
It reads a file, removes the file and returns a promise of the file contents.
readRemoveFile('path/to/file', 'utf8').then(str => {
str; //=> 'file contents'
fs.accessSync('path/to/file'); // Error: ENOENT
});License
ISC License © 2018 Shinnosuke Watanabe
