>>103
<?php
header("Content-Type: text/plain");
$dir = "d:/";
$dirs = scandir($dir);
foreach($dirs as $v){
if (true === is_dir($dir.$v)) {
echo $v, "\n";
}
}