Liking cljdoc? Tell your friends :D

web.files.FileSystemDirectoryEntry

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.
raw docstring

create-readercljs

(create-reader this)

Method.

[Non Standard] [Experimental]

The web.files.FileSystemDirectoryEntry interface's method createReader() a web.files.FileSystemDirectoryReader object which can be used read the entries in the directory.

directoryReader = FileSystemDirectoryEntry.createReader();

See also: https://developer.mozilla.org/en-US/docs/Web/API/FileSystemDirectoryEntry/createReader

Method.

[Non Standard]
[Experimental]

The `web.files.FileSystemDirectoryEntry` interface's method createReader()
a `web.files.FileSystemDirectoryReader` object which can be used
read the entries in the directory.

`directoryReader = FileSystemDirectoryEntry.createReader();`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/FileSystemDirectoryEntry/createReader`
sourceraw docstring

get-directorycljs

(get-directory this & args)

Method.

[Non Standard] [Experimental]

The web.files.FileSystemDirectoryEntry interface's method getDirectory() a web.files.FileSystemDirectoryEntry object corresponding to directory contained somewhere within the directory subtree rooted the directory on which it's called.

FileSystemDirectoryEntry.getDirectory([path][, options][, successCallback][, errorCallback]);

See also: https://developer.mozilla.org/en-US/docs/Web/API/FileSystemDirectoryEntry/getDirectory

Method.

[Non Standard]
[Experimental]

The `web.files.FileSystemDirectoryEntry` interface's method getDirectory()
a `web.files.FileSystemDirectoryEntry` object corresponding to
directory contained somewhere within the directory subtree rooted
the directory on which it's called.

`FileSystemDirectoryEntry.getDirectory([path][, options][, successCallback][, errorCallback]);`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/FileSystemDirectoryEntry/getDirectory`
sourceraw docstring

get-filecljs

(get-file this & args)

Method.

[Non Standard] [Experimental]

The web.files.FileSystemDirectoryEntry interface's method getFile() a web.files.FileSystemFileEntry object corresponding to a file somewhere within the directory subtree rooted at the directory which it's called.

FileSystemDirectoryEntry.getFile([path][, options][, successCallback][, errorCallback]);

See also: https://developer.mozilla.org/en-US/docs/Web/API/FileSystemDirectoryEntry/getFile

Method.

[Non Standard]
[Experimental]

The `web.files.FileSystemDirectoryEntry` interface's method getFile()
a `web.files.FileSystemFileEntry` object corresponding to a file
somewhere within the directory subtree rooted at the directory
which it's called.

`FileSystemDirectoryEntry.getFile([path][, options][, successCallback][, errorCallback]);`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/FileSystemDirectoryEntry/getFile`
sourceraw docstring

remove-recursivelycljs

(remove-recursively this & args)

Method.

[Experimental] [Obsolute]

The web.files.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.

[Experimental]
[Obsolute]

The `web.files.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`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close