you betcha--
Look in the directory functions section of the manual--
Here is the code I usually start with--also from the manual
<?php
if ($handle = opendir('.')) {
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != "..") {
echo "$file\n";
}
}
closedir($handle);
}
?>