This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
Non-standard
This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.
The FileSystemEntry
interface's method toURL
()
creates and returns a string containing a URL which can be used to identify the file system entry. This is done by exposing a new URL scheme—filesystem:
—that can be used as the value of src
and href
attributes.
FileSystemEntry.toURL([mimeType]);
mimeType
Optional
A DOMString
containing a URL that can then be used as a document reference in HTML content, or an empty string if the URL can't be generated (such as if the file system implementation doesn't support toURL()
).
If you have a FileSystemFileEntry
corresponding to an image file in a file system available to your Web site or app, you can call toURL()
to get its URL for use in HTML. If your site is located at http://my-awesome-website.woot
, and you have a temporary file system that contains an image file named awesomesauce.jpg
, the URL returned by toURL()
might be (depending on the browser's implementation) something like "filesystem:http://my-awesome-website.woot/temporary/awesomesauce.jpg"
.
Code that makes use of this might look like this:
let img = document.createElement("img"); img.src = imageFileEntry.toURL(); document.body.appendChild(img);
Assuming the scenario mentioned before the code, the result would be HTML that looks like this being appended to the end of the document:
<img src="filesystem:http://my-awesome-website.woot/temporary/awesomesauce.jpg">
Specification | Status | Comment |
---|---|---|
File and Directory Entries API The definition of 'toURL()' in that specification. | Draft | Initial specification. |
This API has no official W3C or WHATWG specification.
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 13 | ? | No | No | No | No |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | Yes | ? | No | No | No | ? |
FileSystemDirectoryEntry.removeRecursively()
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/FileSystemEntry/toURL