İşte benim PHP kodu:
<?php
// Enumerate the directories in styles
$styles_dir = 'styles/';
if($handle = opendir($styles_dir))
{
while(FALSE !== ($file = readdir($handle)))
{
echo $file . '(' . is_dir($file) . ')<br>';
}
}
?>
Burada dizinleri vardır styles:

Ve burada çıktı:
.(1)
..(1)
forest()
industrial()
Neden forest ve industrial dizinleri değil mi?