function appendFile
Jump to headingappendFile(): Promise<void>
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()
).
Parameters Jump to heading
Jump to headingpath: PathLike | FileHandle
filename or {FileHandle}
Jump to headingdata: string | Uint8Array
optional
Jump to headingoptions: ()
| BufferEncoding
| null
Return Type Jump to heading
Promise<void>
Fulfills with undefined
upon success.