create_directory
Creates directories on a filesystem, including parent directories if necessary. Supports both relative and absolute paths, ensuring structured file organization.
Instructions
Creates a directory. Optionally creates parent directories. Accepts relative or absolute paths.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
create_parents | No | If true, create any necessary parent directories that don't exist. If false, fail if a parent directory is missing. | |
path | Yes | The path to the directory to create. Can be relative or absolute. |