create_directory
Create new directories or ensure existing directories are available. Handles nested directory structures in a single operation and succeeds silently if directories already exist.
Instructions
Create a new directory or ensure a directory exists. Can create multiple nested directories in one operation. If the directory already exists, this operation will succeed silently.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | The path of the directory to create |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "The path of the directory to create",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}