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


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


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

用法:

fs.appendFileSync( path, data, options])

参数:该方法接受上述和以下描述的三个参数:



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

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

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

// Node.js program to demonstrate the 
// fs.appendFileSync() 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.appendFileSync("example_file.txt", " - Geeks For Geeks"); 
  
// 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:Hello - Geeks For Geeks

范例2:本示例显示了使用可选参数来更改文件编码和操作标志的用法。 “w”标志替换文件的内容,而不是附加到文件。

// Node.js program to demonstrate the 
// fs.appendFileSync() 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")); 
  
// Append to the file using optional parameters 
fs.appendFileSync("example_file.txt", 
  "This is the appended text", 
  { encoding:"utf8", flag:"w" } 
); 
  
// 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 the appended text

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




相关用法


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