fsPromises.appendFile(path, data[, options])
path
<string> | <Buffer> | <URL> | <FileHandle> 文件名或 <FileHandle>data
<string> | <Buffer>options
<Object> | <string>encoding
<string> | <null> 默认值:'utf8'
mode
<integer> 默认值:0o666
flag
<string> 请参阅对文件系统flags
的支持。 默认值:'a'
。
- 返回: <Promise> 成功时将使用
undefined
履行。
异步地将数据追加到文件,如果该文件尚不存在,则创建该文件。
data
可以是字符串或 <Buffer>。
如果 options
是字符串,则它指定 encoding
。
mode
选项仅影响新创建的文件。
有关详细信息,请参阅 fs.open()
。
可以将 path
指定为已打开用于追加(使用 fsPromises.open()
)的 <FileHandle>。
path
<string> | <Buffer> | <URL> | <FileHandle> filename or <FileHandle>data
<string> | <Buffer>options
<Object> | <string>encoding
<string> | <null> Default:'utf8'
mode
<integer> Default:0o666
flag
<string> See support of file systemflags
. Default:'a'
.
- Returns: <Promise> Fulfills with
undefined
upon success.
Asynchronously append data to a file, creating the file if it does not yet
exist. data
can be a string or a <Buffer>.
If options
is a string, then it specifies the encoding
.
The mode
option only affects the newly created file. See fs.open()
for more details.
The path
may be specified as a <FileHandle> that has been opened
for appending (using fsPromises.open()
).