elFinder\elFinderVolumeDriver::scandir PHP Méthode

scandir() public méthode

Return directory content or false on error
Author: Dmitry (dio) Levashov
public scandir ( string $hash ) : array | false
$hash string file hash
Résultat array | false
    public function scandir($hash)
    {
        if (($dir = $this->dir($hash)) == false) {
            return false;
        }
        return $dir['read'] ? $this->getScandir($this->decode($hash)) : $this->setError(elFinder::ERROR_PERM_DENIED);
    }