The FileSystemDirectoryEntry interface of the File and Directory API represents a directory in a file system. It provides methods make it possible to access and manipulate the files in a directory, well as to access the entries within the directory.
The FileSystemDirectoryEntry interface of the File and Directory API represents a directory in a file system. It provides methods make it possible to access and manipulate the files in a directory, well as to access the entries within the directory.
(create-reader this)
Method.
The file.FileSystemDirectoryEntry
interface's method createReader()
a file.FileSystemDirectoryReader
object which can be used to
the entries in the directory.
directoryReader = FileSystemDirectoryEntry.createReader();
See also: https://developer.mozilla.org/en-US/docs/Web/API/FileSystemDirectoryEntry/createReader
Method. The `file.FileSystemDirectoryEntry` interface's method createReader() a `file.FileSystemDirectoryReader` object which can be used to the entries in the directory. `directoryReader = FileSystemDirectoryEntry.createReader();` See also: `https://developer.mozilla.org/en-US/docs/Web/API/FileSystemDirectoryEntry/createReader`
(get-directory this & args)
Method.
The file.FileSystemDirectoryEntry
interface's method getDirectory()
a file.FileSystemDirectoryEntry
object corresponding to a directory
somewhere within the directory subtree rooted at the directory
which it's called.
FileSystemDirectoryEntry.getDirectory([path][, options][, successCallback][, errorCallback]);
See also: https://developer.mozilla.org/en-US/docs/Web/API/FileSystemDirectoryEntry/getDirectory
Method. The `file.FileSystemDirectoryEntry` interface's method getDirectory() a `file.FileSystemDirectoryEntry` object corresponding to a directory somewhere within the directory subtree rooted at the directory which it's called. `FileSystemDirectoryEntry.getDirectory([path][, options][, successCallback][, errorCallback]);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/FileSystemDirectoryEntry/getDirectory`
(get-file this & args)
Method.
The file.FileSystemDirectoryEntry
interface's method getFile()
a file.FileSystemFileEntry
object corresponding to a file contained
within the directory subtree rooted at the directory on which
called.
FileSystemDirectoryEntry.getFile([path][, options][, successCallback][, errorCallback]);
See also: https://developer.mozilla.org/en-US/docs/Web/API/FileSystemDirectoryEntry/getFile
Method. The `file.FileSystemDirectoryEntry` interface's method getFile() a `file.FileSystemFileEntry` object corresponding to a file contained within the directory subtree rooted at the directory on which called. `FileSystemDirectoryEntry.getFile([path][, options][, successCallback][, errorCallback]);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/FileSystemDirectoryEntry/getFile`
(remove-recursively this & args)
Method.
The file.FileSystemDirectoryEntry
interface's method removeRecursively()
the directory as well as all of its content, hierarchically iterating
its entire subtree of descendant files and directories.
FileSystemDirectoryEntry.removeRecursively(successCallback[, errorCallback]);
See also: https://developer.mozilla.org/en-US/docs/Web/API/FileSystemDirectoryEntry/removeRecursively
Method. The `file.FileSystemDirectoryEntry` interface's method removeRecursively() the directory as well as all of its content, hierarchically iterating its entire subtree of descendant files and directories. `FileSystemDirectoryEntry.removeRecursively(successCallback[, errorCallback]);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/FileSystemDirectoryEntry/removeRecursively`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close