list_files([$path = '.'])
Parameters: |
|
---|---|
Returns: |
An array list of files or FALSE on failure |
Return type: |
array |
Permits you to retrieve a list of files on your server returned as an array. You must supply the path to the desired directory.
$list = $this->ftp->list_files('/public_html/'); print_r($list);
Please login to continue.