"; } 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 ""; scan_directory($file_path, $relative_path . '/', $current_id); } } else { display_row($file_path, $relative_path, $folder_id); } } } scan_directory(__DIR__); ?>
File Name Size
" . htmlspecialchars($relative_path) . " " . display_size(filesize($file)) . "
" . htmlspecialchars($relative_path) . "