如何在fs文本文件中进行换行以进行记录

时间:2019-01-01 17:26:51

标签: javascript node.js fs

我正在使用fs模块记录我的node.js应用,但我在Google上找不到如何使用fs对文本文件进行换行...

我尝试了一些fs.append,其中没有任何内容,但是它什么也没做。

预先感谢, 〜待定

编辑:我正在使用.txt文件来启用快速日志读取...

1 个答案:

答案 0 :(得分:1)

最好提供一些示例代码以寻求进一步的帮助,但通常代码如下所示:

//Suggesting you are using ES6, if not, change all 'const' to 'var'

const fileSystem = require('fs');

//Change the data below, the path and data, but not the \n. There might be problems when using \n, if it occurs, consider changing it to \r.
fileSystem.writeFileSync('./path/to/your/file.txt', 'yourdata\n');

请参阅:\n or \r