File system Uploads

File system Uploads

Certified

Upload multiple files to the local filesystem

Writes each provided Kestra storage URI to the destination directory under configured allowed-paths. Accepts a list, a map (destination filename to URI), a JSON-encoded list/map, or a storage URI of a file containing URIs.

Example (Kestra config):

plugins: 
  configurations: 
    - type: io.kestra.plugin.fs.local.Uploads
      values: 
        allowed-paths: 
          - /data/uploads
yaml
type: io.kestra.plugin.fs.local.Uploads

Upload a list of files to a local directory

yaml
id: fs_local_uploads
namespace: company.team

inputs:
  - id: file1
    type: FILE
  - id: file2
    type: FILE

tasks:
  - id: uploads
    type: io.kestra.plugin.fs.local.Uploads
    from:
      - "{{ inputs.file1 }}"
      - "{{ inputs.file2 }}"
    to: "/data/uploads"

Upload only files matching a regex (e.g. .sql files)

yaml
id: fs_local_uploads_regexp
namespace: company.team

tasks:
  - id: uploads
    type: io.kestra.plugin.fs.local.Uploads
    from:
      - "{{ outputs.step1.uri }}"
      - "{{ outputs.step2.uri }}"
    regExp: ".*\\.sql$"
    to: "/data/uploads"

Upload with custom destination filenames using a map

yaml
id: fs_local_uploads_with_names
namespace: company.team

inputs:
  - id: file1
    type: FILE
  - id: file2
    type: FILE

tasks:
  - id: uploads
    type: io.kestra.plugin.fs.local.Uploads
    from:
      report.csv: "{{ inputs.file1 }}"
      data.json: "{{ inputs.file2 }}"
    to: "/data/uploads"
Properties

Files to upload (kestra:// URIs)

Kestra internal storage URIs; accepts a single URI string, a list of URIs, a map of destination filenames to URIs (to preserve original filenames), or a URI pointing to a file that contains URIs.

Destination directory

Must resolve within one of the configured allowed-paths.

Default25

Maximum files to upload

Defaulttrue

Overwrite existing files

If false, fails when the destination file already exists.

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

Regexp filter on full path

Only source URIs fully matching this regex are uploaded. Example: .*\.sql$.

SubTypestring

Local file URIs of the uploaded files