DeleteFiles​Delete​Files

Delete one or multiple files from your namespace files.

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

Delete namespace files that match a specific regex glob pattern.

yaml
id: delete_files
namespace: company.team
tasks:
  - id: delete
    type: io.kestra.plugin.core.namespace.DeleteFiles
    namespace: tutorial
    files:
      - "**.upl"

Delete all namespace files from a specific namespace.

yaml
id: delete_all_files
namespace: company.team
tasks:
  - id: delete
    type: io.kestra.plugin.core.namespace.DeleteFiles
    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 the files should be deleted

Default false

Flag specifying whether to delete empty parent folders after deleting files

If true, parent folders that become empty after file deletion will also be removed.

SubType string