forked from givanz/VvvebJs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
scan.php
55 lines (42 loc) · 1.12 KB
/
scan.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
$scandir = __DIR__ . '/media/';
// Run the recursive function
// This function scans the files folder recursively, and builds a large array
$scan = function ($dir) use ($scandir, &$scan) {
$files = [];
// Is there actually such a folder/file?
if (file_exists($dir)) {
foreach (scandir($dir) as $f) {
if (! $f || $f[0] == '.') {
continue; // Ignore hidden files
}
if (is_dir($dir . '/' . $f)) {
// The path is a folder
$files[] = [
'name' => $f,
'type' => 'folder',
'path' => str_replace($scandir, '', $dir) . '/' . $f,
'items' => $scan($dir . '/' . $f), // Recursively get the contents of the folder
];
} else {
// It is a file
$files[] = [
'name' => $f,
'type' => 'file',
'path' => str_replace($scandir, '', $dir) . '/' . $f,
'size' => filesize($dir . '/' . $f), // Gets the size of this file
];
}
}
}
return $files;
};
$response = $scan($scandir);
// Output the directory listing as JSON
header('Content-type: application/json');
echo json_encode([
'name' => '',
'type' => 'folder',
'path' => '',
'items' => $response,
]);