Ejemplo n.º 1
0
 /**
  * get the filesystem info
  * @param string path
  * @return array
  *
  * returns an associative array with the following keys:
  * - size
  * - mtime
  * - ctime
  * - mimetype
  * - encrypted
  * - versioned
  */
 public static function getFileInfo($path)
 {
     if (($path == '/Shared' || substr($path, 0, 8) == '/Shared/') && OC_App::isEnabled('files_sharing')) {
         if ($path == '/Shared') {
             list($info) = OCP\Share::getItemsSharedWith('file', OC_Share_Backend_File::FORMAT_FILE_APP_ROOT);
         } else {
             $info['size'] = OC_Filesystem::filesize($path);
             $info['mtime'] = OC_Filesystem::filemtime($path);
             $info['ctime'] = OC_Filesystem::filectime($path);
             $info['mimetype'] = OC_Filesystem::getMimeType($path);
             $info['encrypted'] = false;
             $info['versioned'] = false;
         }
     } else {
         $info = OC_FileCache::get($path);
     }
     return $info;
 }