Haxe API Documentation
Back | Index
extern class js.html.fs.EntrySync
Available in js
DRAFT
This page is not complete.

The EntrySync interface of the FileSystem API represents entries in a file system. The entries can be a file or a DirectoryEntry.



Documentation for this class was provided by MDN.
var filesystem(default,null) : FileSystemSync
var fullPath(default,null) : String
var isDirectory(default,null) : Bool
var isFile(default,null) : Bool
var name(default,null) : String
function copyTo(parent : DirectoryEntrySync, name : String) : EntrySync
function getMetadata() : Metadata
function getParent() : DirectoryEntrySync
function moveTo(parent : DirectoryEntrySync, name : String) : EntrySync
function remove() : Void
function toURL() : String
Back | Index