- writeFile(path, data, _options?): Promise<void>
Parameters
- path: PathLike | FileHandle
- data:
| FileContents
| Stream
| Iterable<string | ArrayBufferView>
| AsyncIterable<string | ArrayBufferView> Optional
_options: null | BufferEncoding | ObjectEncodingOptions & {
flag?: OpenMode | undefined;
flush?: boolean;
mode?: Mode | undefined;
}
Returns Promise<void>
Asynchronously writes data to a file, replacing the file if it already exists.
The encoding option is ignored if data is a buffer.