Dropbox Move

Dropbox Move

Certified

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.

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

Move a file from one location to another.

yaml
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

Dropbox access token

Token must allow moving both source and destination paths.

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

Allow ownership transfer

Default false. Enables moves across different owners.

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.

Moved item metadata

Definitions
clientModifiedstring
Formatdate-time

Client modified time

Last modified timestamp from Dropbox.

idstring

Unique item ID

Dropbox path_lower for the entry.

namestring

Item name

pathstring

Display path

Lower-case path for display.

sizeinteger

Size in bytes

Null for folders.

typestring

Entry type

Either 'file' or 'folder'.