671

我正在尝试将字符串附加到日志文件。但是 writeFile 会在每次写入字符串之前擦除内容。

fs.writeFile('log.txt', 'Hello Node', function (err) {
  if (err) throw err;
  console.log('It\'s saved!');
}); // => message.txt erased, contains only 'Hello Node'

知道如何以简单的方式做到这一点吗?

4

18 回答 18

1028

对于偶尔的追加,您可以使用appendFile,每次调用时都会创建一个新的文件句柄:

异步

const fs = require('fs');

fs.appendFile('message.txt', 'data to append', function (err) {
  if (err) throw err;
  console.log('Saved!');
});

同步

const fs = require('fs');

fs.appendFileSync('message.txt', 'data to append');

但是如果你重复追加到同一个文件,最好重用文件句柄

于 2012-06-29T19:06:56.090 回答
337

当您想写入日志文件时,即将数据附加到文件末尾时,切勿使用appendFile. appendFile为您添加到文件中的每条数据打开一个文件句柄,一段时间后您会收到一个漂亮的EMFILE错误。

我可以补充一点,appendFile它并不比WriteStream.

示例appendFile

console.log(new Date().toISOString());
[...Array(10000)].forEach( function (item,index) {
    fs.appendFile("append.txt", index+ "\n", function (err) {
        if (err) console.log(err);
    });
});
console.log(new Date().toISOString());

在我的电脑上最多 8000,你可以将数据附加到文件中,然后你得到这个:

{ Error: EMFILE: too many open files, open 'C:\mypath\append.txt'
    at Error (native)
  errno: -4066,
  code: 'EMFILE',
  syscall: 'open',
  path: 'C:\\mypath\\append.txt' }

此外,appendFile将在启用时写入,因此您的日志不会按时间戳写入。您可以使用示例进行测试,将 1000 设置为 100000,顺序将是随机的,取决于对文件的访问。

如果要附加到文件,则必须使用这样的可写流:

var stream = fs.createWriteStream("append.txt", {flags:'a'});
console.log(new Date().toISOString());
[...Array(10000)].forEach( function (item,index) {
    stream.write(index + "\n");
});
console.log(new Date().toISOString());
stream.end();

你想结束就结束。您甚至不需要使用stream.end(),默认选项是AutoClose:true,因此您的文件将在您的进程结束时结束,并且您避免打开太多文件。

于 2017-04-12T12:56:12.853 回答
149

您的代码使用 createWriteStream 为每次写入创建一个文件描述符。log.end 更好,因为它要求节点在写入后立即关闭。

var fs = require('fs');
var logStream = fs.createWriteStream('log.txt', {flags: 'a'});
// use {flags: 'a'} to append and {flags: 'w'} to erase and write a new file
logStream.write('Initial line...');
logStream.end('this is the end line');
于 2012-03-21T21:01:26.580 回答
33

此外appendFile,您还可以传入一个标志writeFile以将数据附加到现有文件。

fs.writeFile('log.txt', 'Hello Node',  {'flag':'a'},  function(err) {
    if (err) {
        return console.error(err);
    }
});

通过传递标志“a”,数据将附加到文件的末尾。

于 2016-06-09T10:24:31.323 回答
24

您需要打开它,然后写入它。

var fs = require('fs'), str = 'string to append to file';
fs.open('filepath', 'a', 666, function( e, id ) {
  fs.write( id, 'string to append to file', null, 'utf8', function(){
    fs.close(id, function(){
      console.log('file closed');
    });
  });
});

以下是一些有助于解释参数的链接




编辑:此答案不再有效,请查看新的fs.appendFile附加方法。

于 2010-08-11T19:27:10.137 回答
18

使用a+标志追加创建一个文件(如果不存在):

fs.writeFile('log.txt', 'Hello Node', { flag: "a+" }, (err) => {
  if (err) throw err;
  console.log('The file is created if not existing!!');
}); 

文档:https ://nodejs.org/api/fs.html#fs_file_system_flags

于 2020-09-15T12:21:47.603 回答
14

Node.js 0.8 有fs.appendFile

fs.appendFile('message.txt', 'data to append', (err) => {
  if (err) throw err;
  console.log('The "data to append" was appended to file!');
});

文档

于 2012-11-04T01:12:31.847 回答
13

我的方法比较特别。我基本上使用该WriteStream解决方案,但实际上并没有使用stream.end(). 相反,我使用cork/ uncork。这获得了低 RAM 使用率的好处(如果这对任何人都很重要),而且我相信用于日志记录/记录(我最初的用例)更安全。

下面是一个非常简单的例子。请注意,我刚刚为展示添加了一个伪for循环——在生产代码中我正在等待 websocket 消息。

var stream = fs.createWriteStream("log.txt", {flags:'a'});
for(true) {
  stream.cork();
  stream.write("some content to log");
  process.nextTick(() => stream.uncork());
}

uncork将在下一个滴答中将数据刷新到文件中。

在我的场景中,各种大小的峰值高达每秒 200 次写入。然而,在夜间,每分钟只需要少量写入。即使在高峰时段,该代码也非常可靠。

于 2020-03-08T10:23:31.730 回答
10

当您需要将某些内容附加到文件时,使用fs.appendFileorfsPromises.appendFile是最快和最强大的选项。

与建议的一些答案相反,如果文件路径提供给appendFile函数, 它实际上会自行关闭。只有当你传入一个文件句柄时,你才能通过类似的东西fs.open()来关闭它。

我在一个文件中尝试了超过 50,000 行。

例子 :

(async () => {
  // using appendFile.
  const fsp = require('fs').promises;
  await fsp.appendFile(
    '/path/to/file', '\r\nHello world.'
  );

  // using apickfs; handles error and edge cases better.
  const apickFileStorage = require('apickfs');
  await apickFileStorage.writeLines(
    '/path/to/directory/', 'filename', 'Hello world.'
  );
})();

在此处输入图像描述

参考:https ://github.com/nodejs/node/issues/7560

于 2020-01-12T15:10:34.053 回答
5

如果您想要一种简单且无压力的方式在文件中逐行写入日志,那么我推荐fs-extra

const os = require('os');
const fs = require('fs-extra');

const file = 'logfile.txt';
const options = {flag: 'a'};

async function writeToFile(text) {
  await fs.outputFile(file, `${text}${os.EOL}`, options);
}

writeToFile('First line');
writeToFile('Second line');
writeToFile('Third line');
writeToFile('Fourth line');
writeToFile('Fifth line');

使用 Node v8.9.4 测试。

于 2018-03-26T14:54:00.413 回答
4
fd = fs.openSync(path.join(process.cwd(), 'log.txt'), 'a')
fs.writeSync(fd, 'contents to append')
fs.closeSync(fd)
于 2012-07-17T05:22:18.067 回答
3

我提供这个建议只是因为对打开标志的控制有时很有用,例如,您可能希望先将其截断为现有文件,然后对其附加一系列写入 - 在这种情况下,在打开文件时使用“w”标志并且在所有写入完成之前不要关闭它。当然 appendFile 可能是你所追求的:-)

  fs.open('log.txt', 'a', function(err, log) {
    if (err) throw err;
    fs.writeFile(log, 'Hello Node', function (err) {
      if (err) throw err;
      fs.close(log, function(err) {
        if (err) throw err;
        console.log('It\'s saved!');
      });
    });
  });
于 2016-05-31T08:28:00.923 回答
3

使用jfile包:

myFile.text+='\nThis is new line to be appended'; //myFile=new JFile(path);
于 2016-07-20T09:22:10.790 回答
1

尝试使用flags: 'a'将数据附加到文件

 var stream = fs.createWriteStream("udp-stream.log", {'flags': 'a'});
  stream.once('open', function(fd) {
    stream.write(msg+"\r\n");
  });
于 2020-08-29T05:35:44.850 回答
0

这是一个完整的脚本。填写您的文件名并运行它,它应该可以工作!这是有关脚本背后逻辑的视频教程。

var fs = require('fs');

function ReadAppend(file, appendFile){
  fs.readFile(appendFile, function (err, data) {
    if (err) throw err;
    console.log('File was read');

    fs.appendFile(file, data, function (err) {
      if (err) throw err;
      console.log('The "data to append" was appended to file!');

    });
  });
}
// edit this with your file names
file = 'name_of_main_file.csv';
appendFile = 'name_of_second_file_to_combine.csv';
ReadAppend(file, appendFile);
于 2015-08-17T01:59:11.513 回答
0
const inovioLogger = (logger = "") => {
    const log_file = fs.createWriteStream(__dirname + `/../../inoviopay-${new Date().toISOString().slice(0, 10)}.log`, { flags: 'a' });
    const log_stdout = process.stdout;
    log_file.write(logger + '\n');
}
于 2019-08-26T12:43:31.347 回答
0

除了denysonique的回答之外,有时NodeJS中的异步类型appendFile和其他异步方法用于promise返回而不是回调传递。为此,您需要使用promisifyHOF 包装函数或从 Promise 命名空间导入异步函数:

const { appendFile } = require('fs').promises;

await appendFile('path/to/file/to/append', dataToAppend, optionalOptions);

我希望它会有所帮助

于 2019-10-04T10:02:59.720 回答
0

我将 async fs.appendFile 包装到一个基于 Promise 的函数中。希望它可以帮助其他人了解这将如何工作。

    append (path, name, data) {

        return new Promise(async (resolve, reject) => {

            try {

                fs.appendFile((path + name), data, async (err) => {

                    if (!err) {

                        return resolve((path + name));

                    } else {

                        return reject(err);

                    }

                });

            } catch (err) {

                return reject(err);

            }

        });

    }
于 2020-07-08T15:46:30.887 回答