Create Folder (EVS) — mutating
create_folderCreates a new folder inside a device's live backup. Provide an existing parent path and the new folder's name to add it to real backed-up data.
Instructions
MUTATING: creates a new folder inside a device's live backup, via the EVS-hosted evs/createFolder endpoint. This modifies real backed-up data — the new folder appears in subsequent browse_folder/list_files listings (confirmed live against a real device, see docs/api-map.md's "Live mutation testing" section). parentPath must be an existing folder (use browse_folder/list_files first to confirm it exists); folderName is just the new folder's name, not a path.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| deviceId | Yes | The iDrive device ID to create the folder under, e.g. as returned by the sibling `list_devices` tool's `device_id` field. | |
| folderName | Yes | Just the new folder's name (e.g. "New Folder") — not a path. It is created directly inside `parentPath`. | |
| parentPath | Yes | The EVS-format path of the existing parent folder the new folder is created inside, e.g. "/C" or "/C/Users/me/Documents" — the same format as `browse_folder`'s `path`. Use `browse_folder` or `list_files` first to confirm this parent folder exists. |