Move a file on an NFS mount.
yaml
type: "io.kestra.plugin.fs.nfs.Move"Examples
Move a file from one location to another on an NFS mount.
yaml
id: nfs_move
namespace: company.team
tasks:
- id: move_file
type: io.kestra.plugin.fs.nfs.Move
from: /mnt/nfs/shared/in/file.txt
to: /mnt/nfs/shared/archive/file.txt
Properties
from *Requiredstring
The path to the file to move.
to *Requiredstring
The destination path.
nfsService Non-dynamicNfsService
Default
{}Outputs
from string
Format
uriThe URI of the original file.
to string
Format
uriThe URI of the new moved file.