码迷,mamicode.com
首页 > 移动开发 > 详细

[Node.js] Write or Append to a File in Node.js with fs.writeFile and fs.writeFileSync

时间:2018-10-21 10:16:11      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:content   efi   const   can   filename   The   set   errors   cal   

In node.js, you can require fs, and then call fs.writeFile with the filename, and data to write to that file (as a string or a buffer). That will overwrite the entire file, so to just append that data to the file instead, pass an options object with the flag key set to a. Or, you can use fs.appendFile. Make sure to handle errors using a callback as the last argument to writeFile and appendFile.

There are synchronous versions of each function as well, fs.writeFileSync and fs.appendFileSync, which will throw errors, instead of returning them in a callback.

 

const fs = require(‘fs‘)

const contents = ‘Data to write 123\n‘

// Write File, async:
fs.writeFile(‘output.txt‘, contents, {
  // flag: ‘a‘ // ‘a‘ flag for append
}, (err) => {
  console.log("ERROR: ", err)
})


// Append File, async: 
fs.appendFile(‘output.txt‘, contents, (err) => {
  console.log("ERROR: ", err)
})


// Write File, Sync:
fs.writeFileSync(‘output.txt‘, contents)

// Append File, Sync:
fs.appendFileSync(‘output.txt‘, contents)


// Sync Error example:
try {
  fs.appendFileSync(‘output.txt‘, contents, {
    flag: ‘ax‘
  })  
} catch(e) {
  console.log("ERROR: ", e)
}

console.log("\nEnd of script")

 

[Node.js] Write or Append to a File in Node.js with fs.writeFile and fs.writeFileSync

标签:content   efi   const   can   filename   The   set   errors   cal   

原文地址:https://www.cnblogs.com/Answer1215/p/9823927.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!