Create Directory
create_directoryCreates a directory and any missing parent directories, returning confirmation without error if it already exists.
Instructions
Create a directory, including any missing parent directories (like mkdir -p).
Args:
path (string): Directory path to create.
Returns: confirmation of the created path. No error if the directory already exists.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Directory path to create |