当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js fs.appendFile()用法及代码示例


fs.appendFile()方法用于将给定数据异步附加到文件中。如果不存在,则创建一个新文件。 options参数可用于修改操作的行为。

用法:

fs.appendFile( path, data[, options], callback )

参数:此方法接受上述和以下所述的四个参数:



  • path:它是一个字符串,缓冲区,URL或数字,表示将附加到其后的源文件名或文件描述符。
  • data:它是一个字符串或缓冲区,表示必须附加的数据。
  • options:它是一个字符串或对象,可用于指定将影响输出的可选参数。它具有三个可选参数:
    • encoding:它是一个字符串,它指定文件的编码。默认值为“ utf8”。
    • mode:它是一个整数,指定文件模式。默认值为“ 0o666”。
    • flag:它是一个字符串,它指定附加到文件时使用的标志。默认值为‘a’。
  • callback:该方法执行时将调用该函数。
    • err:如果方法失败,将引发错误。

以下示例说明了Node.js中的fs.appendFile()方法:

范例1:此示例显示将给定文本附加到文件。

// Node.js program to demonstrate the 
// fs.appendFile() method 
  
// Import the filesystem module 
const fs = require('fs'); 
  
// Get the file contents before the append operation 
console.log("\nFile Contents of file before append:", 
  fs.readFileSync("example_file.txt", "utf8")); 
  
fs.appendFile("example_file.txt", "World", (err) => { 
  if (err) { 
    console.log(err); 
  } 
  else { 
    // Get the file contents after the append operation 
    console.log("\nFile Contents of file after append:", 
      fs.readFileSync("example_file.txt", "utf8")); 
  } 
});

输出:

File Contents of file before append:Hello

File Contents of file after append:HelloWorld

范例2:本示例说明了使用可选参数来更改文件编码,模式和操作标志的用法。

// Node.js program to demonstrate the 
// fs.appendFile() method 
  
// Import the filesystem module 
const fs = require('fs'); 
  
// Get the file contents before the append operation 
console.log("\nFile Contents of file before append:", 
  fs.readFileSync("example_file.txt", "utf8")); 
    
fs.appendFile("example_file.txt", " - GeeksForGeeks", 
  { encoding:"latin1", mode:0o666, flag:"a" }, 
  (err) => { 
    if (err) { 
      console.log(err); 
    } 
    else { 
      // Get the file contents after the append operation 
      console.log("\nFile Contents of file after append:", 
        fs.readFileSync("example_file.txt", "utf8")); 
    } 
  });

输出:

File Contents of file before append:This is a test file

File Contents of file after append:This is a test file - GeeksForGeeks

参考: https://nodejs.org/api/fs.html#fs_fs_appendfile_path_data_options_callback




相关用法


注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 Node.js | fs.appendFile() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。