File system Downloads

File system Downloads

Certified

Download multiple local files

Lists files within allowed-paths, downloads up to maxFiles (default 25) to Kestra storage, then optionally MOVE or DELETE them. Local access requires configured allowed-paths; moveDirectory is required when action is MOVE.

Example (Kestra config):

plugins: 
  configurations: 
    - type: io.kestra.plugin.fs.local.Downloads
      values: 
        allowed-paths: 
          - /data/files
yaml
type: io.kestra.plugin.fs.local.Downloads
yaml
id: fs_local_downloads
namespace: company.team

tasks:
  - id: downloads
    type: io.kestra.plugin.fs.local.Downloads
    from: "/data/files/"
    regExp: ".*.csv"
    recursive: true
    action: NONE

yaml
id: fs_local_downloads_move
namespace: company.team

tasks:
  - id: downloads_move
    type: io.kestra.plugin.fs.local.Downloads
    from: /data/files/
    regExp: ".*.csv"
    recursive: true
    action: MOVE
    moveDirectory: "/data/archive"
Properties

Directory to list

DefaultNONE
Possible Values
MOVEDELETENONE

Action on downloaded files

Default25

Maximum files to retrieve

Destination directory when action is MOVE

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

Defaultfalse

List files recursively

Regexp filter on full path

Metadata of downloaded files

Definitions
accessedDatestring
Formatdate-time
createdDatestring
Formatdate-time
isDirectoryboolean
localPath
modifiedDatestring
Formatdate-time
namestring
parentstring
sizeinteger
uristring
Formaturi
SubTypestring

The downloaded files formatted as a map of from/to URIs