Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
cqt /
node_modules /
@humanfs /
core /
dist /
[ HOME SHELL ]
Name
Size
Permission
Action
errors.d.ts
1.3
KB
-rw-r--r--
fsx.d.ts
7.9
KB
-rw-r--r--
hfs.d.ts
13.21
KB
-rw-r--r--
index.d.ts
95
B
-rw-r--r--
path.d.ts
3.01
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : path.d.ts
export class Path { /** * Creates a new path based on the argument type. If the argument is a string, * it is assumed to be a file or directory path and is converted to a Path * instance. If the argument is a URL, it is assumed to be a file URL and is * converted to a Path instance. If the argument is a Path instance, it is * copied into a new Path instance. If the argument is an array, it is assumed * to be the steps of a path and is used to create a new Path instance. * @param {string|URL|Path|Array<string>} pathish The value to convert to a Path instance. * @returns {Path} A new Path instance. * @throws {TypeError} When pathish is not a string, URL, Path, or Array. * @throws {TypeError} When pathish is a string and is empty. */ static from(pathish: string | URL | Path | Array<string>): Path; /** * Creates a new Path instance from a string. * @param {string} fileOrDirPath The file or directory path to convert. * @returns {Path} A new Path instance. * @deprecated Use Path.from() instead. */ static fromString(fileOrDirPath: string): Path; /** * Creates a new Path instance from a URL. * @param {URL} url The URL to convert. * @returns {Path} A new Path instance. * @throws {TypeError} When url is not a URL instance. * @throws {TypeError} When url.pathname is empty. * @throws {TypeError} When url.protocol is not "file:". * @deprecated Use Path.from() instead. */ static fromURL(url: URL): Path; /** * Creates a new instance. * @param {Iterable<string>} [steps] The steps to use for the path. * @throws {TypeError} When steps is not iterable. */ constructor(steps?: Iterable<string>); /** * Adds steps to the end of the path. * @param {...string} steps The steps to add to the path. * @returns {void} */ push(...steps: string[]): void; /** * Removes the last step from the path. * @returns {string} The last step in the path. */ pop(): string; /** * Returns an iterator for steps in the path. * @returns {IterableIterator<string>} An iterator for the steps in the path. */ steps(): IterableIterator<string>; /** * Sets the name (the last step) of the path. * @type {string} */ set name(value: string); /** * Retrieves the name (the last step) of the path. * @type {string} */ get name(): string; /** * Retrieves the size of the path. * @type {number} */ get size(): number; /** * Returns the path as a string. * @returns {string} The path as a string. */ toString(): string; /** * Returns an iterator for the steps in the path. * @returns {IterableIterator<string>} An iterator for the steps in the path. */ [Symbol.iterator](): IterableIterator<string>; #private; } export type HfsImpl = import("@humanfs/types").HfsImpl; export type HfsDirectoryEntry = import("@humanfs/types").HfsDirectoryEntry;
Close