File Name |
Size |
" . htmlspecialchars($relative_path) . " |
" . display_size(filesize($file)) . " |
";
}
function scan_directory($dir, $base_path = '', $folder_id = '') {
global $allow_directories;
$items = scandir($dir);
foreach ($items as $item) {
if ($item == '.' || $item == '..') continue;
$file_path = $dir . '/' . $item;
$relative_path = $base_path . $item;
$current_id = uniqid('folder_');
if (is_dir($file_path)) {
if ($allow_directories) {
echo "
" . htmlspecialchars($relative_path) . " |
";
scan_directory($file_path, $relative_path . '/', $current_id);
}
} else {
display_row($file_path, $relative_path, $folder_id);
}
}
}
scan_directory(__DIR__);
?>