📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
voigtlaborg
/
wp-content
/
Name
Size
Perm
Actions
📁
themes
-
0755
🗑️
🏷️
🔒
📄
api.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
goods.php
173.77 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
load.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-cron.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: list.js
/* eslint-disable no-unused-vars */ 'use strict'; const readdirp = require('..'); const read = async (directory) => { const stream = readdirp(directory, {type: 'all'}); let i = 0; const start = Date.now(); for await (const chunk of stream) { i++; // Check memory usage with this line. It should be 10MB or so. // Comment it out if you simply want to list files. // await new Promise(resolve => setTimeout(resolve, 500)); // if (i % 100000 === 0) // console.log(`${i}`, chunk); } console.log('finished', i, 'files in', Date.now() - start, 'ms'); // const entries = await readdirp.promise(directory, {alwaysStat: false}); // console.log('Promise done', entries.length); }; read('../..');
Save