/afs/infn.it/roma1/user/dimperig/www/SABRE/plots/internal_radioactivity/Background_TOTAL_newPMTs
foreach (glob("*") as $filename) {
if ($_GET['noplots'] || !in_array($filename, $displayed)) {
if (isset($_GET['match'])) {
if (isset($_GET['regexp']) && $_GET['regexp']) {
if (!preg_match('/.*'.$_GET['match'].'.*/', $filename)) continue;
} else {
if (!fnmatch('*'.$_GET['match'].'*', $filename)) continue;
}
}
if (is_dir($filename)) {
print "- [DIR] $filename
";
} else {
print "- $filename
";
}
}
}
?>