Core Plugins and tasks DownloadFiles

Core Plugins and tasks DownloadFiles

Certified

Download files from Namespace storage.

Fetches files from a Namespace using file paths or glob patterns, storing them into the current working storage with preserved relative paths. Useful for sharing assets across Namespaces.

files accepts a string or list (globs allowed); destination prefixes the output location.

yaml
type: io.kestra.plugin.core.namespace.DownloadFiles

Download a namespace file.

yaml
id: download_file
namespace: company.team
tasks:
  - id: download
    type: io.kestra.plugin.core.namespace.DownloadFiles
    namespace: tutorial
    files:
      - "**input.txt"

Download all namespace files from a specific namespace.

yaml
id: download_all_files
namespace: company.team
tasks:
  - id: download
    type: io.kestra.plugin.core.namespace.DownloadFiles
    namespace: tutorial
    files:
      - "**"
Properties

A file or a list of files from the given namespace

String or a list of strings; each string can either be a regex glob pattern or a file path URI.

The namespace from which you want to download files

Default

The folder where the downloaded files will be stored

SubTypestring

Downloaded files

The task returns a map containing the file path as a key and the file URI as a value.