List files from an NFS mount point.

yaml
type: "io.kestra.plugin.fs.nfs.List"

List files in an NFS directory.

yaml
    id: nfs_list
    namespace: company.team

    tasks:
      - id: list_files
        type: io.kestra.plugin.fs.nfs.List
        from: /mnt/nfs/shared/documents
        regExp: ".*\.pdf$"
        recursive: true
Properties

The directory path to list from.

Default {}
Default false

Whether to list files recursively.

A regular expression to filter files.

SubType

The list of files found.

Format date-time

The creation time of the file.

Whether the file is a directory.

Whether the file is hidden.

Format date-time

The last access time of the file.

Format date-time

The last modified time of the file.

The java.nio.file.Path of the file.

The name of the file.

Default 0

The size of the file in bytes.

Format uri

The absolute URI of the file.