Dropbox CreateFolder

Dropbox CreateFolder

Certified

Create folder in Dropbox

Creates a new Dropbox folder at the resolved path. Path must start with /; can be read from a kestra:// URI. Fails on conflicts unless autorename is true (default: false).

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

Create a new folder in Dropbox.

yaml
id: dropbox_create_folder
namespace: company.team
tasks:
  - id: create_folder
    type: io.kestra.plugin.dropbox.files.CreateFolder
    accessToken: "{{ secret('DROPBOX_ACCESS_TOKEN') }}"
    path: "/new_project_folder/sub_folder"
    autorename: false
Properties

Dropbox access token

Token must allow writing to the target path.

Folder path to create

Accepts a literal Dropbox path or a kestra:// URI pointing to a file that contains the path. Resolved path must start with /.

Defaultfalse

Auto-rename on conflict

Default false. When true, Dropbox appends suffixes like (1) if the folder already exists.

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

Created folder 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'.