diff options
Diffstat (limited to 'lib/files/filesystem.php')
-rw-r--r-- | lib/files/filesystem.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/files/filesystem.php b/lib/files/filesystem.php index 262fde320a1..c00b42d9c44 100644 --- a/lib/files/filesystem.php +++ b/lib/files/filesystem.php @@ -611,6 +611,16 @@ class Filesystem { } /** + * Get the owner for a file or folder + * + * @param string $path + * @return string + */ + public static function getOwner($path) { + return self::$defaultInstance->getOwner($path); + } + + /** * get the ETag for a file or folder * * @param string $path |