zoukankan      html  css  js  c++  java
  • [Node.js] Write or Append to a File in Node.js with fs.writeFile and fs.writeFileSync

    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
    '
    
    // 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("
    End of script")
  • 相关阅读:
    敏捷开发方法综述
    RBAC权限控制系统
    Thinkphp 视图模型
    Thinkphp 缓存和静态缓存局部缓存设置
    Thinkphp路由使用
    Thinkphp自定义标签
    异步处理那些事
    Thinkphp 关联模型
    Thinkphp 3.1. 3 ueditor 1.4.3 添加水印
    数据库组合
  • 原文地址:https://www.cnblogs.com/Answer1215/p/9823927.html
Copyright © 2011-2022 走看看