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


Node.js fs.appendFileSync(path, data[, options])用法及代码示例


fs.appendFileSync(path, data[, options])

历史
版本变化
v7.0.0

传递的options 对象永远不会被修改。

v5.0.0

file 参数现在可以是文件说明符。

v0.6.7

添加于:v0.6.7


参数

将数据同步附加到文件,如果文件尚不存在则创建该文件。 data 可以是字符串或 <Buffer>

mode 选项仅影响新创建的文件。有关详细信息,请参阅 fs.open()

import { appendFileSync } from 'node:fs';

try {
  appendFileSync('message.txt', 'data to append');
  console.log('The "data to append" was appended to file!');
} catch (err) {
  /* Handle the error */
}

如果options 是字符串,则它指定编码:

import { appendFileSync } from 'node:fs';

appendFileSync('message.txt', 'data to append', 'utf8');

path 可以指定为已打开以进行附加的数字文件说明符(使用 fs.open()fs.openSync() )。文件说明符不会自动关闭。

import { openSync, closeSync, appendFileSync } from 'node:fs';

let fd;

try {
  fd = openSync('message.txt', 'a');
  appendFileSync(fd, 'data to append', 'utf8');
} catch (err) {
  /* Handle the error */
} finally {
  if (fd !== undefined)
    closeSync(fd);
}

相关用法


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