
CreateFolder
type: "io.kestra.plugin.dropbox.files.CreateFolder"Examples
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.
path*RequiredNon-dynamicobject
The path of the folder to create.
Can be a direct path as a string, or a Kestra internal storage URI (kestra://...) of a file containing the path.
autorenamebooleanstring
falseIf there's a conflict, have the Dropbox server try to autorename the file.
For example, appending (1) or (2).
Outputs
file
The metadata of the created folder.
io.kestra.plugin.dropbox.models.DropboxFile
date-timeThe last time the file was modified on Dropbox.
The unique ID of the file or folder.
The file or folder name.
The lower-case version of the path for display.
The file size in bytes.
Null for folders.
The type of the entry.
Can be 'file' or 'folder'.