
Dropbox Move
CertifiedMove Dropbox file or folder
Dropbox Move
Move Dropbox file or folder
Moves an item to a new Dropbox path. Paths must start with /; can be read from kestra:// URIs. Conflicts can autorename (default false). Cross-user moves require allowOwnershipTransfer.
type: io.kestra.plugin.dropbox.files.MoveExamples
Move a file from one location to another.
id: dropbox_move
namespace: company.team
tasks:
- id: move_file
type: io.kestra.plugin.dropbox.files.Move
accessToken: "{{ secret('DROPBOX_ACCESS_TOKEN') }}"
from: "/source/report.csv"
to: "/archive/report_q1.csv"
autorename: false
Properties
accessToken *Requiredstring
Dropbox access token
Token must allow moving both source and destination paths.
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 /.
allowOwnershipTransfer booleanstring
falseAllow ownership transfer
Default false. Enables moves across different owners.
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
Moved item metadata
io.kestra.plugin.dropbox.models.DropboxFile
date-timeClient modified time
Last modified timestamp from Dropbox.
Unique item ID
Dropbox path_lower for the entry.
Item name
Display path
Lower-case path for display.
Size in bytes
Null for folders.
Entry type
Either 'file' or 'folder'.