Jarves\Filesystem\Filesystem::getCount PHP Method

getCount() public method

Returns the file count inside $folderPath
public getCount ( string $folderPath ) : mixed
$folderPath string
return mixed
    public function getCount($folderPath)
    {
        $fs = $this->getAdapter($folderPath);
        return $fs->getCount(static::normalizePath($folderPath));
    }