
Dropbox Copy
CertifiedCopy Dropbox file or folder
Dropbox Copy
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).
type: io.kestra.plugin.dropbox.files.CopyExamples
Copy a file from one location to another.
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
accessToken *Requiredstring
Dropbox access token
Token must allow reading source and writing destination.
from *RequiredNon-dynamicobject
Source path
Literal Dropbox path or kestra:// URI containing the path. Must start with /.
to *RequiredNon-dynamicobject
Destination path
Literal Dropbox path or kestra:// URI containing the path. Must start with /.
autorename booleanstring
falseAuto-rename on conflict
Default false. When true, Dropbox appends suffixes like (1) if destination exists.
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
Outputs
file
Copied item metadata
io.kestra.plugin.dropbox.models.DropboxFile
date-timeClient modified time
Last modified timestamp from Dropbox. Null for folders.
Lower-cased path
Dropbox path_lower for the entry — the item's lower-cased path, not a stable unique ID.
Item name
Display path
Case-preserved display path from Dropbox.
Size in bytes
Null for folders.
Entry type
Either 'file' or 'folder'.