741 B
741 B
title, type, language, tags, cover, dateModified
| title | type | language | tags | cover | dateModified | |
|---|---|---|---|---|---|---|
| Read file lines | snippet | javascript |
|
solitude-beach | 2020-10-22T20:24:04+03:00 |
Returns an array of lines from the specified file.
- Use
fs.readFileSync()to create aBufferfrom a file. - Use
Buffer.prototype.toString()to covert the buffer to a string. - Use
String.prototype.split()to create an array of lines from the contents of the file.
const fs = require('fs');
const readFileLines = filename =>
fs
.readFileSync(filename)
.toString('UTF8')
.split('\n');
/*
contents of test.txt :
line1
line2
line3
___________________________
*/
let arr = readFileLines('test.txt');
console.log(arr); // ['line1', 'line2', 'line3']