DownloadFiles DownloadFiles

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

Download one or multiple files from your namespace files.

Use a regex glob pattern or a file path to download files from your namespace files. This can be useful to share code between projects and teams, which is located in different namespaces.

Examples

Download a namespace file.

yaml
id: download_file
namespace: dev
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: dev
tasks:
  - id: download
    type: io.kestra.plugin.core.namespace.DownloadFiles
    namespace: tutorial
    files:
      - "**"

Properties

destination

  • Type: string
  • Dynamic: ✔️
  • Required:

The folder where the downloaded files will be stored

files

  • Type:
    • array
    • string
  • Dynamic: ✔️
  • Required:

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.

namespace

  • Type: string
  • Dynamic: ✔️
  • Required:

The namespace from which you want to download files.

Outputs

files

  • Type: object
  • SubType: string
  • Dynamic:
  • Required:

Downloaded files.

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

Definitions

Was this page helpful?