fs
fs copied to clipboard
File System Standard
See step 1 of https://fs.spec.whatwg.org/#write-a-chunk > Let input be the result of [converting](https://infra.spec.whatwg.org/#javascript-string-convert) chunk to a [FileSystemWriteChunkType](https://fs.spec.whatwg.org/#typedefdef-filesystemwritechunktype). If this throws an exception, then return [a promise rejected with](https://webidl.spec.whatwg.org/#a-promise-rejected-with) that exception....
- [ ] At least two implementers are interested (and none opposed): * Chrome * … - [ ] [Tests](https://github.com/web-platform-tests/wpt) are written and can be reviewed and commented upon at:...
Migrated from https://github.com/WICG/file-system-access/pull/317 (see https://github.com/whatwg/fs/issues/2) Addresses https://github.com/WICG/file-system-access/issues/64 and https://github.com/WICG/file-system-access/issues/65 - [ ] At least two implementers are interested (and none opposed): * Chrome * … - [ ] [Tests](https://github.com/web-platform-tests/wpt) are...
Besides `read` and `write` which are sync methods, there are async methods `truncate`, `getSize`, `flush` and `close`, returning promises. Does it make sense for the dedicated interface available only in...
The web-platform tests check (in a few instances) that async operations like truncate fail if there's another async operation still unresolved. a) there's nothing in the spec about this b)...
Right now, it appears that this proposal does not support in-place overwrites. Furthermore, all access is buffered, and buffers are owned by ECMAScript code, rather than by the user agent....
I've requested time for a breakout session about this API at [TPAC](https://www.w3.org/2022/09/TPAC/) (date/time TBA - will update when available). I'd like to use this issue to gather agenda items/topics people...
This PR adds Access Handles to the spec. The Access Handles surface differs from existing ones by offering in-place and exclusive write access to a file’s content. This change, along...
Our web app downloads large application specific static data files. They range in the 10kb to several hundred kb size. We use a variety of approaches to cache this data....
With ongoing work developing V8 stack-swapping & works like https://github.com/WebAssembly/js-promise-integration/blob/main/proposals/js-promise-integration/Overview.md , it's quite possible the current work we've done to build a very special purpose high-speed sync interface catering to...