The absolute path of the file to append to.
The content to append (string, ArrayBuffer, TypedArray, or Blob).
Optionaloptions: AppendOptionsOptional append options.
Options for appending to files.
Optionalcreate?: booleanWhether to create the file if it does not exist.
A promise that resolves to an AsyncVoidIOResult indicating success or failure.
writeFile with append: true option
Appends content to a file at the specified path. Creates the file if it doesn't exist (unless
create: falseis specified).