diff options
-rw-r--r-- | lib/public/Files/Cache/ICache.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/public/Files/Cache/ICache.php b/lib/public/Files/Cache/ICache.php index 1934cc24bd4..16c71654b51 100644 --- a/lib/public/Files/Cache/ICache.php +++ b/lib/public/Files/Cache/ICache.php @@ -83,6 +83,17 @@ interface ICache { public function getFolderContentsById($fileId); /** + * get the metadata of all files stored in $folder except hidden files + * + * Only returns files one level deep, no recursion + * + * @param int $fileId the file id of the folder + * @return ICacheEntry[] + * @since 9.0.0 + */ + public function getFolderContentsByIdExceptHidden($fileId); + + /** * store meta data for a file or folder * This will automatically call either insert or update depending on if the file exists * |