Events createReadStream() in node js

Events createReadStream() in node js

var fs = require('fs');

var readStream = fs.createReadStream('./myrenamedfile.txt');

/*Write to the console when the file is opened:*/
readStream.on('open', function () {
console.log('The file is open');
});

if file myrenamedfile.txt exists then msg " The file is open " will show other error will show.


Leave a Reply