
Core Plugins and tasks DownloadFiles
CertifiedDownload files from Namespace storage.
Core Plugins and tasks DownloadFiles
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.
type: io.kestra.plugin.core.namespace.DownloadFilesExamples
Download a namespace file.
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.
id: download_all_files
namespace: company.team
tasks:
- id: download
type: io.kestra.plugin.core.namespace.DownloadFiles
namespace: tutorial
files:
- "**"
Properties
files *Requiredarraystring
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 *Requiredstring
The namespace from which you want to download files
destination string
The folder where the downloaded files will be stored
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
Outputs
files object
Downloaded files
The task returns a map containing the file path as a key and the file URI as a value.