getstoragestats.php 231 B

1234567891011121314
  1. <?php
  2. $dir = '/';
  3. if (isset($_GET['dir'])) {
  4. $dir = $_GET['dir'];
  5. }
  6. OCP\JSON::checkLoggedIn();
  7. \OC::$session->close();
  8. // send back json
  9. OCP\JSON::success(array('data' => \OCA\Files\Helper::buildFileStorageStatistics($dir)));