Reference: FileReader.readAsDataURL
Considering the following example:
function previewFile(file) {
var reader = new FileReader();
reader.onloadend = function () {
console.log(reader.result);
}
reader.readAsDataURL(file);
}
It states:
instanceOfFileReader.readAsDataURL(blob);
blob: The Blob or File from which to read.
How can a local file URL like:
'file:///C:/path-to/root.png'be passed to thereadAsDataURL()Is
FileReader()available in a Firefox Addon?
This information is outdated as of now, but cannot be deleted.
You can create
Fileinstances just by specifying a path when your code is chrome-privileged:Fileis a sub-class ofBlob, so allFileinstances are also validBlobs. Please note that this requires a platform path, and not a file URL.Yes,
FileReaderis available to addons.FileandFileReaderare available in allwindows. If you want to use them in a non-window scope (likebootstrap.jsor a code module), you may usensIDOMFile/nsIDOMFileReader.