DeleteFiles DeleteFiles

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

Delete one or multiple files from your namespace files.

Examples

Delete namespace files that match a specific regex glob pattern.

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

Properties

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 the files should be deleted.

Outputs

files

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

Definitions

Was this page helpful?