delete_directory
Remove a directory and all its contents permanently through recursive deletion. This operation cannot be undone, so use with caution when managing file systems.
Instructions
Permanently delete a directory and all of its contents, including all files and subdirectories. This is a recursive operation that cannot be undone. Use with extreme caution.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | The path to the directory to delete |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "The path to the directory to delete",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}