elFinder\elFinderVolumeDriver::scandir PHP Метод

scandir() публичный Метод

Return directory content or false on error
Автор: Dmitry (dio) Levashov
public scandir ( string $hash ) : array | false
$hash string file hash
Результат 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);
    }