- appendFile(
this: V_Context,
path: PathLike | FileHandle,
data: FileContents,
_options?:
| null
| BufferEncoding
| (
EncodingOption & { mode?: Mode | undefined; flag?: OpenMode | undefined; }
),
): Promise<void> Parameters
- this: V_Context
- path: PathLike | FileHandle
- data: FileContents
Optional
_options:
| null
| BufferEncoding
| (
EncodingOption & { mode?: Mode | undefined; flag?: OpenMode | undefined; }
)
Returns Promise<void>
Asynchronously append data to a file, creating the file if it not yet exists.