- appendFile(
this: V_Context,
filename: PathLike,
data: FileContents,
cb?: Callback,
): void Returns void
- appendFile(
this: V_Context,
filename: PathLike,
data: FileContents,
options?: EncodingOption & { mode?: Mode | undefined; flag?: OpenMode | undefined; },
cb?: Callback,
): void Parameters
- this: V_Context
- filename: PathLike
- data: FileContents
Optional
options: EncodingOption & { mode?: Mode | undefined; flag?: OpenMode | undefined; }Optional
cb: Callback
Returns void
- appendFile(
this: V_Context,
filename: PathLike,
data: FileContents,
encoding?: BufferEncoding,
cb?: Callback,
): void Parameters
- this: V_Context
- filename: PathLike
- data: FileContents
Optional
encoding: BufferEncodingOptional
cb: Callback
Returns void
Asynchronously append data to a file, creating the file if it not yet exists.