|
|
|
|
|
|
Function disk_folder_list | Language: PHP
|
Syntax
Parameters
| STRING | Folder | Path to the folder, or an empty string for the current folder. |
Return value
Description
Returns in an array the list of folders found in the specified folder.
See also: disk.file.list |
PHP Sample Code
$files = disk_file_list("");
$files_count = count($files);
for($ptr = 0; $ptr < $files_count; $ptr++) {
echo($files[$ptr]."<BR>");
} |
|
|
|