Move or copy file
move_fileMove or copy a file/folder on CloudSee Drive to a new destination using its exact object key and storage ID. Confirm required for moves; asCopy enables non-destructive duplication.
Instructions
Move (or copy, with asCopy=true) a file or folder to a new location, addressed by its exact object key plus its storage id (the StorageId field from search_files / browse_folder / recent_files — not from list_files). Queued: returns a RequestId and the operation completes in the background, typically under 2 minutes — verify by listing until the object appears at the destination. Requires the source drive (bucketName). A move removes the source and is destructive, so it requires confirm=true; a copy does not. (Write access is authorized server-side by the public API's RBAC — a denial means the API key lacks this tool's scope, not a tool failure.)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| asCopy | No | Copy instead of move (copy is non-destructive; the source is kept). | |
| confirm | No | Must be true to actually perform this mutating/irreversible action. If omitted or false, the tool returns a preview and makes no changes. | |
| isFolder | No | Set true for a folder. | |
| objectKey | Yes | Exact source object key as returned by a listing tool (folders keep their trailing slash). | |
| storageId | Yes | Storage/index id of the object — the StorageId field returned by the INDEXED listing tools (search_files, browse_folder, recent_files). NOTE: list_files reads straight from storage and returns a different id that will NOT work here. | |
| bucketName | No | The CloudSee drive (S3 bucket) name to operate in, e.g. 'max-2778abc0' — find it in the CloudSee dashboard. Required unless CLOUDSEE_DEFAULT_BUCKET is configured on the server. | |
| destinationPath | Yes | Destination folder prefix. | |
| destinationBucket | No | Target drive, if different from the source drive. |