path); } /** * @return string */ public function getName(){ return $this->name; } /** * @return string */ public function getMimetype(){ return $this->mimetype; } /** * @return string * @see alphayax\freebox\api\v3\symbols\FileSystem\FileInfoType */ public function getType(){ return $this->type; } /** * @return int */ public function getSize(){ return $this->size; } /** * @return int */ public function getModification(){ return $this->modification; } /** * @return int */ public function getIndex(){ return $this->index; } /** * @return boolean */ public function isLink(){ return $this->link; } /** * @return string */ public function getTarget(){ return base64_decode( $this->target); } /** * @return boolean */ public function isHidden(){ return $this->hidden; } /** * @return int */ public function getFoldercount(){ return $this->foldercount; } /** * @return int */ public function getFilecount(){ return $this->filecount; } }