我正在使用fs模块记录我的node.js应用,但我在Google上找不到如何使用fs对文本文件进行换行...
我尝试了一些fs.append,其中没有任何内容,但是它什么也没做。
预先感谢, 〜待定
编辑:我正在使用.txt文件来启用快速日志读取...
答案 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