appendFile

abstract suspend fun appendFile(data: String): ERROR CLASS: Symbol not found for js.core.Void(source)


abstract suspend fun appendFile(data: String, options: FileHandleAppendFileAsyncOptions? = definedExternally): ERROR CLASS: Symbol not found for js.core.Void(source)
abstract suspend fun appendFile(data: String, options: BufferEncoding? = definedExternally): ERROR CLASS: Symbol not found for js.core.Void(source)
abstract suspend fun appendFile(data: ERROR CLASS: Symbol not found for Uint8Array<*>): ERROR CLASS: Symbol not found for js.core.Void(source)
abstract suspend fun appendFile(data: ERROR CLASS: Symbol not found for Uint8Array<*>, options: FileHandleAppendFileAsyncOptions? = definedExternally): ERROR CLASS: Symbol not found for js.core.Void(source)
abstract suspend fun appendFile(data: ERROR CLASS: Symbol not found for Uint8Array<*>, options: BufferEncoding? = definedExternally): ERROR CLASS: Symbol not found for js.core.Void(source)

Alias of filehandle.writeFile().

When operating on file handles, the mode cannot be changed from what it was set to with fsPromises.open(). Therefore, this is equivalent to filehandle.writeFile().

Since

v10.0.0

Return

Fulfills with undefined upon success.