|
|
|
|
|
by mtrycz2
1184 days ago
|
|
So it is a sandboxed, abstract filesystem, not rw access to my actual filesystem? The first lines of the description say > This API allows interaction with files on a user's local device, or on a user-accessible network file system. |
|
It's sandboxed storage which lives in your filesystem but is only available via the browser and is sandboxed on a per-HTTP-origin basis. That makes it impossible[^1], e.g., for x.y.com to sideload data into, or exfiltrate from, y.z.com. How the files are actually stored on your filesystem is not defined by the in-progress standards doc, but they are not stored as-is because doing so would open them up to security issues from out-of-browser sources, as well as potential file-locking problems from out-of-browser apps.
[^1]: Edit: as a responder points out: "impossible" for a given value of "impossible"