appendFileAsync
external fun appendFileAsync(path: PathLike, data: String): ERROR CLASS: Symbol not found for Promise<ERROR CLASS: Symbol not found for js.core.Void>(source)
external fun appendFileAsync(path: PathLike, data: String, options: AppendFileAsyncOptions? = definedExternally): ERROR CLASS: Symbol not found for Promise<ERROR CLASS: Symbol not found for js.core.Void>(source)
external fun appendFileAsync(path: PathLike, data: String, options: BufferEncoding? = definedExternally): ERROR CLASS: Symbol not found for Promise<ERROR CLASS: Symbol not found for js.core.Void>(source)
external fun appendFileAsync(path: PathLike, data: ERROR CLASS: Symbol not found for Uint8Array<*>): ERROR CLASS: Symbol not found for Promise<ERROR CLASS: Symbol not found for js.core.Void>(source)
external fun appendFileAsync(path: PathLike, data: ERROR CLASS: Symbol not found for Uint8Array<*>, options: AppendFileAsyncOptions? = definedExternally): ERROR CLASS: Symbol not found for Promise<ERROR CLASS: Symbol not found for js.core.Void>(source)
external fun appendFileAsync(path: PathLike, data: ERROR CLASS: Symbol not found for Uint8Array<*>, options: BufferEncoding? = definedExternally): ERROR CLASS: Symbol not found for Promise<ERROR CLASS: Symbol not found for js.core.Void>(source)
external fun appendFileAsync(path: FileHandle, data: String): ERROR CLASS: Symbol not found for Promise<ERROR CLASS: Symbol not found for js.core.Void>(source)
external fun appendFileAsync(path: FileHandle, data: String, options: AppendFileAsyncOptions? = definedExternally): ERROR CLASS: Symbol not found for Promise<ERROR CLASS: Symbol not found for js.core.Void>(source)
external fun appendFileAsync(path: FileHandle, data: String, options: BufferEncoding? = definedExternally): ERROR CLASS: Symbol not found for Promise<ERROR CLASS: Symbol not found for js.core.Void>(source)
external fun appendFileAsync(path: FileHandle, data: ERROR CLASS: Symbol not found for Uint8Array<*>): ERROR CLASS: Symbol not found for Promise<ERROR CLASS: Symbol not found for js.core.Void>(source)
external fun appendFileAsync(path: FileHandle, data: ERROR CLASS: Symbol not found for Uint8Array<*>, options: AppendFileAsyncOptions? = definedExternally): ERROR CLASS: Symbol not found for Promise<ERROR CLASS: Symbol not found for js.core.Void>(source)
external fun appendFileAsync(path: FileHandle, data: ERROR CLASS: Symbol not found for Uint8Array<*>, options: BufferEncoding? = definedExternally): ERROR CLASS: Symbol not found for Promise<ERROR CLASS: Symbol not found for js.core.Void>(source)
Asynchronously append data to a file, creating the file if it does not yet exist. data can be a string or a Buffer.
If options is a string, then it specifies the encoding.
The mode option only affects the newly created file. See fs.open() for more details.
The path may be specified as a FileHandle that has been opened for appending (using fsPromises.open()).
Since
v10.0.0
Return
Fulfills with undefined upon success.
Parameters
path
filename or {FileHandle}