Obsolete
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.
This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the specification changes.
The FileSystemDirectoryEntry
interface's method removeRecursively
()
removes the directory as well as all of its content, hierarchically iterating over its entire subtree of descendant files and directories.
To remove a single file, or an empty directory, you can also use FileSystemEntry.remove()
.
FileSystemDirectoryEntry.removeRecursively(successCallback[, errorCallback]);
successCallback
errorCallback
Optional
FileError
describing the error which occurred as input.If an error occurs and an errorCallback
was specified, it gets called with a single parameter: a FileError
object describing the error. The FileError.code
specifies what type of error occurred, as follows:
FileError.INVALID_MODIFICATION_ERR
FileError.NO_MODIFICATION_ALLOWED_ERR
FileError.NOT_FOUND_ERR
FileSystemDirectoryEntry
no longer exists.FileError.NOT_READABLE_ERR
FileError.SECURITY_ERR
If you try to delete a directory which contains one or more files that can't be removed, or if an error occurs while deletion of a number of files is underway, some files may not be deleted. You should provide an errorCallback
to watch for and handle this, perhaps by trying again.
directory.removeRecursively(function() { /* The directory was removed successfully */ }, function() { /* an error occurred while removing the directory */ });
Specification | Status | Comment |
---|---|---|
File and Directory Entries API The definition of 'getDirectory()' in that specification. | Editor's Draft | Now removed from spec! |
This API has no official W3C or WHATWG specification.
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | 13 webkit | No support[1] | No support | No support | No support |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | No support | 0.16webkit | No support[1] | No support | No support | No support |
[1] Although this method exists in Firefox 50, it currently immediately calls the errorCallback
with an NS_ERROR_DOM_NOT_SUPPORTED
error. It has been removed altogether as of Firefox 52.
FileSystemDirectoryEntry
FileSystemEntry.remove()
© 2005–2017 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/FileSystemDirectoryEntry/removeRecursively