diff options
Diffstat (limited to 'lib/public/files/fileinfo.php')
-rw-r--r-- | lib/public/files/fileinfo.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/public/files/fileinfo.php b/lib/public/files/fileinfo.php index b9c8258f21e..0279050b858 100644 --- a/lib/public/files/fileinfo.php +++ b/lib/public/files/fileinfo.php @@ -11,6 +11,19 @@ interface FileInfo { const TYPE_FILE = 'file'; const TYPE_FOLDER = 'dir'; + /* + * @const \OCP\Files\FileInfo::SPACE_NOT_COMPUTED Return value for a not computed space value + */ + const SPACE_NOT_COMPUTED = -1; + /* + * @const \OCP\Files\FileInfo::SPACE_UNKNOWN Return value for unknown space value + */ + const SPACE_UNKNOWN = -2; + /* + * @const \OCP\Files\FileInfo::SPACE_UNKNOWN Return value for unlimited space + */ + const SPACE_UNLIMITED = -3; + /** * Get the Etag of the file or folder * |