safe-write-stream
v1.0.5
Published
Like fs.createWriteStream, but it will create the needed directories before trying to create the file.
Downloads
5
Maintainers
Readme
Safe Write Stream
Like fs.createWriteStream
, but it will create the needed directories before trying to create the file.
Install
npm install safe-write-stream
Usage
var safeWriteStream = require('safe-write-stream');
fs.createReadStream('file.txt')
.pipe(safeWriteStream(__dirname+'/these/will/be/created/file.txt'))
Parameters
See the fs.createWriteStream docs.