The FileSystemFileEntry interface of the File System API represents
file in a file system. It offers properties describing the file's
as well as the web.file()
method, which creates a file.File
that can be used to read the file.
The FileSystemFileEntry interface of the File System API represents file in a file system. It offers properties describing the file's as well as the `web.file()` method, which creates a `file.File` that can be used to read the file.
(create-writer this & args)
Method.
The file.FileSystemFileEntry
interface's method createWriter()
a file.FileWriter
object which can be used to write data into
file represented by the directory entry.
FileSystemFileEntry.createWriter(successCallback[, errorCallback]);
See also: https://developer.mozilla.org/en-US/docs/Web/API/FileSystemFileEntry/createWriter
Method. The `file.FileSystemFileEntry` interface's method createWriter() a `file.FileWriter` object which can be used to write data into file represented by the directory entry. `FileSystemFileEntry.createWriter(successCallback[, errorCallback]);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/FileSystemFileEntry/createWriter`
(file this & args)
Method.
The file.FileSystemFileEntry
interface's method file() returns
file.File
object which can be used to read data from the file
by the directory entry.
FileSystemFileEntry.file(successCallback[, errorCallback]);
See also: https://developer.mozilla.org/en-US/docs/Web/API/FileSystemFileEntry/file
Method. The `file.FileSystemFileEntry` interface's method file() returns `file.File` object which can be used to read data from the file by the directory entry. `FileSystemFileEntry.file(successCallback[, errorCallback]);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/FileSystemFileEntry/file`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close