Dropbox Copy

Dropbox Copy

Certified

Copy Dropbox file or folder

Copies an item to another Dropbox path. Paths must start with /; can be read from kestra:// URIs. Conflicts can autorename (default false).

yaml
type: io.kestra.plugin.dropbox.files.Copy

Copy a file from one location to another.

yaml
id: dropbox_copy
namespace: company.team
tasks:
  - id: copy_file
    type: io.kestra.plugin.dropbox.files.Copy
    accessToken: "{{ secret('DROPBOX_ACCESS_TOKEN') }}"
    from: "/source/template.csv"
    to: "/reports/new_report.csv"
    autorename: false
Properties

Dropbox access token

Token must allow reading source and writing destination.

Source path

Literal Dropbox path or kestra:// URI containing the path. Must start with /.

Destination path

Literal Dropbox path or kestra:// URI containing the path. Must start with /.

Defaultfalse

Auto-rename on conflict

Default false. When true, Dropbox appends suffixes like (1) if destination exists.

Reference (ref) of the pluginDefaults to apply to this task.

Copied item metadata

Definitions
clientModifiedstring
Formatdate-time

Client modified time

Last modified timestamp from Dropbox. Null for folders.

idstring

Lower-cased path

Dropbox path_lower for the entry — the item's lower-cased path, not a stable unique ID.

namestring

Item name

pathstring

Display path

Case-preserved display path from Dropbox.

sizeinteger

Size in bytes

Null for folders.

typestring

Entry type

Either 'file' or 'folder'.