
Dropbox CreateFolder
CertifiedCreate folder in Dropbox
Dropbox CreateFolder
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).
type: io.kestra.plugin.dropbox.files.CreateFolderExamples
Create a new folder in Dropbox.
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
accessToken *Requiredstring
Dropbox access token
Token must allow writing to the target path.
path *RequiredNon-dynamicobject
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 /.
autorename booleanstring
falseAuto-rename on conflict
Default false. When true, Dropbox appends suffixes like (1) if the folder already exists.
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
Outputs
file
Created folder 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'.