wiki created

This commit is contained in:
marcos.luna
2025-11-06 12:23:49 +01:00
parent 6cd3511962
commit 2fe9fa8254
60 changed files with 5012 additions and 142 deletions
@@ -0,0 +1,42 @@
# mkdir - Create Directory
Create a new directory on the target system.
## Description
The `mkdir` command creates a new directory on the target system. It creates parent directories if they don't exist.
## Syntax
```
mkdir <path>
```
## Parameters
- `path` (required): Directory path to create. Supports both absolute and relative paths.
## Examples
```
mkdir C:\temp\new_folder
mkdir staging
mkdir C:\Users\Administrator\Documents\Project
```
## Features
- Supports both absolute and relative paths (relative paths are resolved using the current working directory)
- Creates parent directories if they don't exist
- Useful for creating staging directories, temporary folders, or organizing files during post-exploitation activities
## Output
```
[mkdir] Directory created: C:\temp\new_folder
```
---
**Command Category:** File System
**Requires Admin:** No