https://github.com/whatwg/fs/blob/main/proposals/MultipleReadersWriters.md
Currently, only one FileSystemSyncAccessHandle may be open at a time per file, preventing an origin from reading the same file from multiple tabs easily. Conversely, multiple FileSystemWritableFileStreams can be simultaneously open, letting multiple writers clobber each other.
We are prototyping new “create” modes for FileSystemSyncAccessHandle and FileSystemWritableFileStream that allow opening either multiple readers/writers or an exclusive writer to a file entry, depending on the application's use case.
```
handle.createSyncAccessHandle({ mode: 'read-only' });
handle.createWritable({ mode: 'exclusive' });
```
https://github.com/w3ctag/design-reviews/issues/845
Pending
Web developers: Positive (https://github.com/whatwg/fs/issues/34)
Other signals: Emscripten plans to utilize multiple readers and writers for performance improvement, and sites using Emscripten will be able to take advantage of this integration.
N/A
Yes
Not yet
FileSystemAccessMultipleReadersWriters
False
https://bugs.chromium.org/p/chromium/issues/detail?id=1382215
https://chromestatus.com/feature/5172892632875008
This intent message was generated by Chrome Platform Status.