Create Directory
Create a directory at the given path, including any missing parent directories (idempotent mkdir -p). By default, succeeds silently if the directory already exists. Enable 'Fail if exists' to error when the target path is already present.
Category: File & Folder Operations · Group: Files · Activity name: CreateDirectory

Example
CreateDirectory("<path>", failIfExists=False)
Inputs
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| Directory Path | string | Yes | The absolute path of the directory to create. Missing parent directories are created automatically. | |
| Fail if exists | boolean | False | When enabled, the activity errors if the target directory already exists. Default: succeed silently if present. |