ensure_directory
Creates a directory if it doesn't exist and returns the absolute path, ensuring required folder structure for PowerShell automation tasks.
Instructions
Ensure directory exists and return absolute path.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"title": "Path",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}