FileSystemEntry.idl 397 B

12345678910
  1. [Exposed=Window]
  2. interface FileSystemEntry {
  3. readonly attribute boolean isFile;
  4. readonly attribute boolean isDirectory;
  5. readonly attribute USVString name;
  6. [FIXME] readonly attribute USVString fullPath;
  7. [FIXME] readonly attribute FileSystem filesystem;
  8. [FIXME] undefined getParent(optional FileSystemEntryCallback successCallback, optional ErrorCallback errorCallback);
  9. };