Overworked files API and explorer

This commit is contained in:
2025-06-19 23:14:18 +02:00
parent c42d5a2652
commit de1664469c
15 changed files with 529 additions and 407 deletions

19
api/info.php Normal file
View File

@ -0,0 +1,19 @@
<?php
header('Content-Type: application/json');
require_once __DIR__ . '/../vfs.php';
$pathV = $_GET['path'] ?? '';
$real = resolve_path($pathV);
if (!file_exists($real)) {
echo json_encode([]);
exit;
}
echo json_encode([
'name' => basename($real),
'type' => is_dir($real) ? 'directory' : 'file',
'size' => is_file($real) ? filesize($real) : null,
'mtime' => date(DATE_ISO8601, filemtime($real)),
'path' => virtualize_path($real),
]);