Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. FileSystemSyncAccessHandle
  4. write()

FileSystemSyncAccessHandle: write() method

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨March 2023⁩.

Secure context: This feature is available only insecure contexts (HTTPS), in some or allsupporting browsers.

Note: This feature is only available inDedicated Web Workers.

Thewrite() method of theFileSystemSyncAccessHandle interface writes the content of a specified buffer to the file associated with the handle, optionally at a given offset.

Files within theorigin private file system are not visible to end-users, therefore are not subject to the same security checks as methods running on files within the user-visible file system. As a result, writes performed usingFileSystemSyncAccessHandle.write() are much more performant. This makes them suitable for significant, large-scale file updates such asSQLite database modifications.

Syntax

js
write(buffer, options)

Parameters

buffer

AnArrayBuffer orArrayBufferView (such as aDataView) representing the buffer to be written to the file.

optionsOptional

An options object containing the following properties:

at

A number representing the offset in bytes from the start of the file that the buffer should be written at.

Note:You cannot directly manipulate the contents of anArrayBuffer. Instead, you create a typed array object like anInt8Array or aDataView object, which represents the buffer in a specific format, and use that to read and write the contents of the buffer.

Return value

A number representing the number of bytes written to the file.

Exceptions

InvalidStateErrorDOMException

Thrown if the associated access handle is already closed, or if the modification of the file's binary data completely fails.

QuotaExceededError

Thrown if the increased data capacity exceeds the browser'sstorage quota.

TypeError

Thrown if the underlying file system does not support writing the file from the specified file offset.

Examples

The following asynchronous event handler function is contained inside a Web Worker. On receiving a message from the main thread it:

  • Creates a synchronous file access handle.
  • Gets the size of the file and creates anArrayBuffer to contain it.
  • Reads the file contents into the buffer.
  • Encodes the message and writes it to the end of the file.
  • Persists the changes to disk and closes the access handle.
js
onmessage = async (e) => {  // Retrieve message sent to work from main script  const message = e.data;  // Get handle to draft file  const root = await navigator.storage.getDirectory();  const draftHandle = await root.getFileHandle("draft.txt", { create: true });  // Get sync access handle  const accessHandle = await draftHandle.createSyncAccessHandle();  // Get size of the file.  const fileSize = accessHandle.getSize();  // Read file content to a buffer.  const buffer = new DataView(new ArrayBuffer(fileSize));  const readBuffer = accessHandle.read(buffer, { at: 0 });  // Write the message to the end of the file.  const encoder = new TextEncoder();  const encodedMessage = encoder.encode(message);  const writeBuffer = accessHandle.write(encodedMessage, { at: readBuffer });  // Persist changes to disk.  accessHandle.flush();  // Always close FileSystemSyncAccessHandle if done.  accessHandle.close();};

Note:In earlier versions of the spec,close(),flush(),getSize(), andtruncate() were wrongly specified as asynchronous methods, and older versions of some browsers implement them in this way. However, all current browsers that support these methods implement them as synchronous methods.

Specifications

Specification
File System
# api-filesystemsyncaccesshandle-write

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp