das sollte dir helfen, ist zwar für designausgaben gedacht und nicht zur weiterverarbeitung aber das ist nicht schwer zu ändern
Code:
function show_all_files($ordner, $links = 0, $sub = FALSE) {
$
handle = opendir($ordner);
while ($file = readdir ($
handle)) {
if($file != "." && $file != "..") {
if(is_dir($ordner."/".$file)) {
echo "[img]./gfx/blindgif.gif[/img][b]".$file;
echo '[/b]
';
show_all_files($ordner."/".$file, $links+15, TRUE);
} else {
echo "[img]./gfx/blindgif.gif[/img]";
echo '<a href="'.$ordner."/".$file.'" class=textlink>» '.$file.'';
echo ' ('.fs_convert($ordner."/".$file).')</a>
';
}
}
}
closedir($
handle);
}