📁
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: types.ts
import readdirp from 'readdirp'; const read = async (directory: string) => { const stream = readdirp(directory, { type: 'all' }); let i = 0; for await (const chunk of stream) { // 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)); console.log(`${++i}: ${chunk.path}`); } console.log('Stream done', i); const entries = await readdirp.promise(directory); console.log('Promise done', entries.map(e => e.path)); }; read(__dirname);
Save