Skip to content

DataAdapter.writeBinary method

DataAdapter › writeBinary

Official

Write to a binary file. If the file exists its content will be overwritten, otherwise the file will be created.

Signature:

writeBinary(normalizedPath: string, data: ArrayBuffer, options?: DataWriteOptions | undefined): Promise<void>

Parameters:

Parameter Type Description
normalizedPath string path to file, use {@link normalizePath} to normalize beforehand.
data ArrayBuffer the new file content
options? DataWriteOptions | undefined (Optional)

Returns: Promise<void>