ftp_move
{% ftp_session host: "ftp.example.com", user: "myuser", password: "mypass" %}
{% ftp_move from: "/inbox/data.csv", to: "/processed/data.csv" as result %}
{% if result.ok %}
{% log "File moved successfully" %}
{% endif %}
{% endftp_session %}Syntax
{% ftp_move from: "/source/path", to: "/destination/path" as result_variable %}Parameters
Parameter
Required
Description
Result Object
Property
Type
Description
Examples
Notes
Last updated