Classes
Members
(static) root :webdav.FileSystemDirectoryEntry
A dummy webdav.FileSystemDirectoryEntry object which be used as the file system’s root directory. Through this object, you can gain access to all files and directories in the file system.
Type:
Type Definitions
FileSystemEntriesCallback(entries) → {void}
Parameters:
Name | Type | Description |
---|---|---|
entries |
Array.<webdav.FileSystemEntry> |
Properties:
Name | Type | Attributes | Description |
---|---|---|---|
handleEvent |
function |
<optional> |
- Source:
- See:
Returns:
- Type
- void
FileSystemEntryCallback(entry) → {void}
Parameters:
Name | Type | Description |
---|---|---|
entry |
webdav.FileSystemEntry |
Properties:
Name | Type | Attributes | Description |
---|---|---|---|
handleEvent |
function |
<optional> |
- Source:
- See:
Returns:
- Type
- void
FileWriterCallback(fileWriter) → {void}
This interface is the callback used to create a webdav.FileWriter.
Parameters:
Name | Type | Description |
---|---|---|
fileWriter |
webdav.FileWriter |
Properties:
Name | Type | Attributes | Description |
---|---|---|---|
handleEvent |
function |
<optional> |
- Source:
- See:
Returns:
- Type
- void
Metadata
The Metadata interface is used by the File and Directory Entries API to contain information about a file system entry.
Type:
- Object
Properties:
Name | Type | Description |
---|---|---|
modificationTime |
Date | |
size |
number | |
eTag |
string |
- Source:
- See:
MetadataCallback(metadata) → {void}
This interface is the callback used to look up file and directory metadata.
Parameters:
Name | Type | Description |
---|---|---|
metadata |
webdav.Metadata |
Properties:
Name | Type | Attributes | Description |
---|---|---|---|
handleEvent |
function |
<optional> |
- Source:
- See:
Returns:
- Type
- void