Austin Sullivan
Austin Sullivan
https://github.com/whatwg/storage/issues/2 is the meta-bug for making non-default buckets work, and it seems like addressing that is a prerequisite for adding another parameter to "obtain a local storage bottle map" to...
Correct. Apologies, that was poor wording on my part. My understanding of the steps are: - Decide how to make non-default buckets work https://github.com/whatwg/storage/issues/2 - Specify how non-default buckets will...
Seems reasonable to support this on Windows, as well. We could expose an `isHidden` attribute as part of the file metadata (proposed here https://github.com/whatwg/fs/issues/12) and add a new flag to...
https://github.com/whatwg/fs/pull/46 proposes a new method that returns a unique string serialization of a `FileSystemHandle`, though note that this is a one-way serialization (i.e. handle -> string, but not string ->...
> Hypothetical, if it where possible to create a handle from a string, would it then be accessible to postMessage it to a other origin if i gave them the...
A proposal for a new `FileSystemObserver` interface is at https://github.com/whatwg/fs/pull/124
One thing I'll mention before addressing your feedback... > I personally found the initial example to be a bit hard to follow, where I was bouncing around inside the code...
The root directory of a Bucket File System is a special case. It is always the empty string; the only directory for which the `name` is not a "valid file...
Ah I see. This is currently not well-specified. The picker methods say to create: > a new [FileSystemFileHandle](https://fs.spec.whatwg.org/#filesystemfilehandle) associated with _entry_ ... which has a few problems: - This language...
> it's `'\'` in Chromium, but `'D:'` in [Firefox Extension](https://github.com/ichaoX/ext-file) I agree that both `'\'` and `'/'` are not valid names - or at least won't be once we address...