You'd have to see how may files are in that dir & based on a number you choose (say 10) mod it.
eg :
<?php
$handle = opendir('./'); # Directory
$n=0;
$fileext="."; # Files
while ($entry = readdir($handle)) {
echo $entry;
$n++;
if ($n % 10 == 0) {
Previous / next would go here
}
}
closedir($handle);
?>