FileSystemSyncAccessHandle
The FileSystemSyncAccessHandle
interface of the File System API represents a synchronous handle to a file system entry.
This class is only accessible inside dedicated Web Workers (so that its methods do not block execution on the main thread) for files within the origin private file system, which is not visible to end-users.
As a result, its methods are not subject to the same security checks as methods running on files within the user-visible file system, and so are much more performant. This makes them suitable for significant, large-scale file updates such as SQLite database modifications.
The interface is accessed through the FileSystemFileHandle.createSyncAccessHandle()
method.
Note: In earlier versions of the spec, close()
, flush()
, getSize()
, and truncate()
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.
Instance properties
Instance methods
-
close()
-
Closes an open synchronous file handle, disabling any further operations on it and releasing the exclusive lock previously put on the file associated with the file handle.
-
flush()
-
Persists any changes made to the file associated with the handle via the write()
method to disk.
-
getSize()
-
Returns the size of the file associated with the handle in bytes.
-
read()
-
Reads the content of the file associated with the handle into a specified buffer, optionally at a given offset.
-
truncate()
-
Resizes the file associated with the handle to a specified number of bytes.
-
write()
-
Writes the content of a specified buffer to the file associated with the handle, optionally at a given 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 an
ArrayBuffer
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.
onmessage = async (e) => {
const message = e.data;
const root = await navigator.storage.getDirectory();
const draftHandle = await root.getFileHandle("draft.txt", { create: true });
const accessHandle = await draftHandle.createSyncAccessHandle();
const fileSize = accessHandle.getSize();
const buffer = new DataView(new ArrayBuffer(fileSize));
const readBuffer = accessHandle.read(buffer, { at: 0 });
const encoder = new TextEncoder();
const encodedMessage = encoder.encode(message);
const writeBuffer = accessHandle.write(encodedMessage, { at: readBuffer });
accessHandle.flush();
accessHandle.close();
};
Specifications
Browser compatibility
|
Desktop |
Mobile |
|
Chrome |
Edge |
Firefox |
Internet Explorer |
Opera |
Safari |
WebView Android |
Chrome Android |
Firefox for Android |
Opera Android |
Safari on IOS |
Samsung Internet |
FileSystemSyncAccessHandle |
102 |
102 |
111 |
No |
88 |
15.2 |
109 |
109 |
111 |
74 |
15.2 |
21.0 |
close |
102 |
102 |
111 |
No |
88 |
15.2 |
109 |
109 |
111 |
74 |
15.2 |
21.0 |
flush |
102 |
102 |
111 |
No |
88 |
15.2 |
109 |
109 |
111 |
74 |
15.2 |
21.0 |
getSize |
102 |
102 |
111 |
No |
88 |
15.2 |
109 |
109 |
111 |
74 |
15.2 |
21.0 |
read |
102 |
102 |
111 |
No |
88 |
15.2 |
109 |
109 |
111 |
74 |
15.2 |
21.0 |
truncate |
102 |
102 |
111 |
No |
88 |
15.2 |
109 |
109 |
111 |
74 |
15.2 |
21.0 |
write |
102 |
102 |
111 |
No |
88 |
15.2 |
109 |
109 |
111 |
74 |
15.2 |
21.0 |
See also