Uploadcare\Api::getFilesCount PHP 메소드

getFilesCount() 공개 메소드

Return count of files respecting filters
public getFilesCount ( array $options = [] ) : mixed
$options array
리턴 mixed
    public function getFilesCount($options = array())
    {
        $options['limit'] = 1;
        $data = $this->__preparedRequest('file_list', 'GET', $options);
        return $data->total;
    }