appendFile
Call Signature
Section titled “Call Signature”appendFile(
this,filename,data,cb?):void
Defined in: src/node/async.ts:220
Asynchronously append data to a file, creating the file if it not yet exists.
Parameters
Section titled “Parameters”unknown
filename
Section titled “filename”PathLike
FileContents
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'.
Call Signature
Section titled “Call Signature”appendFile(
this,filename,data,options?,cb?):void
Defined in: src/node/async.ts:221
Asynchronously append data to a file, creating the file if it not yet exists.
Parameters
Section titled “Parameters”unknown
filename
Section titled “filename”PathLike
FileContents
options?
Section titled “options?”EncodingOption & { mode?: Mode | undefined; flag?: OpenMode | undefined; }
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'.
Call Signature
Section titled “Call Signature”appendFile(
this,filename,data,encoding?,cb?):void
Defined in: src/node/async.ts:228
Asynchronously append data to a file, creating the file if it not yet exists.
Parameters
Section titled “Parameters”unknown
filename
Section titled “filename”PathLike
FileContents
encoding?
Section titled “encoding?”BufferEncoding
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'.