appendFileSync
appendFileSync(
this,filename,data,_options?):void
Defined in: src/node/sync.ts:216
Asynchronously append data to a file, creating the file if it not yet exists.
Parameters
Section titled “Parameters”unknown
filename
Section titled “filename”PathOrFileDescriptor
FileContents
_options?
Section titled “_options?”WriteFileOptions = {}
Returns
Section titled “Returns”void
Option
Section titled “Option”encoding Defaults to 'utf8'.
Option
Section titled “Option”mode Defaults to 0644.
Option
Section titled “Option”flag Defaults to 'a+'.