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 getParent
()
obtains a FileSystemDirectoryEntry
.
FileSystemEntry.getParent(successCallback[, errorCallback]);
successCallback
FileSystemDirectoryEntry
object representing the parent directory. The parent of the root directory is considered to be the root directory, itself, so be sure to watch for that.errorCallback
Optional
FileError
describing what went wrong.FileError.INVALID_STATE_ERR
FileError.NOT_FOUND_ERR
FileError.SECURITY_ERR
This example renames the file specified by the variable fileEntry
to "newname.html"
.
fileEntry.getParent(function(parent) { fileEntry.moveTo(parent, "newname.html", function(updatedEntry) { console.log("File " + fileEntry.name + " renamed to newname.html."); }); }, function(error) { console.error("An error occurred: Unable to rename " + fileEntry.name + " to newname.html."); });
This is accomplished by first obtaining a FileSystemDirectoryEntry
object representing the directory the file is currently located in. Then moveTo()
is used to rename the file within that directory.
Currently, there isn't a Promise
-based version of this method. You can, however, create a simple helper function to adapt it, like this:
function getParentPromise(entry) { return new Promise((resolve, reject) => { entry.getParent(resolve, reject); }); }
A similar approach can be taken elsewhere in the File and Directory Entries API.
Specification | Status | Comment |
---|---|---|
File and Directory Entries API The definition of 'getParent()' 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 | ? |
© 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/getParent