2018-09-13 23:04:55 +03:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2016-08-18 10:19:41 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
interface FileSystemEntry {
|
|
|
|
readonly attribute boolean isFile;
|
|
|
|
readonly attribute boolean isDirectory;
|
|
|
|
|
|
|
|
[GetterThrows]
|
2016-11-03 09:55:17 +03:00
|
|
|
readonly attribute USVString name;
|
2016-08-18 10:19:41 +03:00
|
|
|
|
|
|
|
[GetterThrows]
|
2016-11-03 09:55:17 +03:00
|
|
|
readonly attribute USVString fullPath;
|
2016-08-18 10:19:41 +03:00
|
|
|
|
|
|
|
readonly attribute FileSystem filesystem;
|
|
|
|
|
2016-11-03 09:55:30 +03:00
|
|
|
void getParent(optional FileSystemEntryCallback successCallback,
|
|
|
|
optional ErrorCallback errorCallback);
|
2016-08-18 10:19:41 +03:00
|
|
|
};
|