use*_*602 12 file line node.js
我正在制作简单的Node.js应用程序,我需要删除文件中的第一行.请问有什么办法吗?我认为用fs.write会有可能,但是怎么样?
mok*_*oka 15
这是从文件中删除第一行的流式版本.
因为它使用流,意味着您不需要在内存中加载整个文件,因此它更加高效和快速,并且可以处理非常大的文件而无需在硬件上填充内存.
var Transform = require('stream').Transform;
var util = require('util');
// Transform sctreamer to remove first line
function RemoveFirstLine(args) {
if (! (this instanceof RemoveFirstLine)) {
return new RemoveFirstLine(args);
}
Transform.call(this, args);
this._buff = '';
this._removed = false;
}
util.inherits(RemoveFirstLine, Transform);
RemoveFirstLine.prototype._transform = function(chunk, encoding, done) {
if (this._removed) { // if already removed
this.push(chunk); // just push through buffer
} else {
// collect string into buffer
this._buff += chunk.toString();
// check if string has newline symbol
if (this._buff.indexOf('\n') !== -1) {
// push to stream skipping first line
this.push(this._buff.slice(this._buff.indexOf('\n') + 2));
// clear string buffer
this._buff = null;
// mark as removed
this._removed = true;
}
}
done();
};
Run Code Online (Sandbox Code Playgroud)
并像这样使用它:
var fs = require('fs');
var input = fs.createReadStream('test.txt'); // read file
var output = fs.createWriteStream('test_.txt'); // write file
input // take input
.pipe(RemoveFirstLine()) // pipe through line remover
.pipe(output); // save to file
Run Code Online (Sandbox Code Playgroud)
另一种方式,不推荐.
如果您的文件不大,并且您不介意将它们加载到内存中,请加载文件,删除行,保存文件,但它速度较慢,并且在大文件上无法正常工作.
var fs = require('fs');
var filePath = './test.txt'; // path to file
fs.readFile(filePath, function(err, data) { // read file to memory
if (!err) {
data = data.toString(); // stringify buffer
var position = data.toString().indexOf('\n'); // find position of new line element
if (position != -1) { // if new line element found
data = data.substr(position + 1); // subtract string based on first line length
fs.writeFile(filePath, data, function(err) { // write file
if (err) { // if error, report
console.log (err);
}
});
} else {
console.log('no lines found');
}
} else {
console.log(err);
}
});
Run Code Online (Sandbox Code Playgroud)
这是另一种方式:
const fs = require('fs');
const filePath = './table.csv';
let csvContent = fs.readFileSync(filePath).toString().split('\n'); // read file and convert to array by line break
csvContent.shift(); // remove the the first element from array
csvContent = csvContent.join('\n'); // convert array back to string
fs.writeFileSync(filePath, csvContent);
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
13759 次 |
最近记录: |