File Move Action
The File Move Action node moves a file from a source path to a destination path.
Unlike the File Copy Action, the original file is removed from the source location after the operation is completed.
This node is primarily intended for smaller individual files such as templates, configuration files, or preference files.
For large media files (e.g., video), it is recommended to use the Job File Copy Action executed asynchronously. That method provides transfer progress in the dashboard and is better suited for high-volume media transfers.
Input Parameters
File Path Full path to the source file, including filename and extension.
New File Path Destination path and filename of the moved file.
If New File Exists Defines how the node behaves if the destination file already exists:
FAIL β stop the node with an error
SKIP β keep the existing destination file and do nothing
DELETE_EXISTING β overwrite the existing destination file
RENAME_EXISTING β rename the existing destination file before moving
INCREMENT_NAME β move the file using an incremented filename

Behavior
Moves a single file
Removes the source file after a successful move
Applies conflict handling rules if necessary
Supports asynchronous execution
Typical Use Cases
moving generated files into delivery folders
organizing workflow outputs
relocating configuration or template files
post-processing cleanup
Practical Note
This node performs a real move operation, not a copy-and-delete simulation inside the workflow. After execution, the original file no longer exists at the source location, so ensure the destination path is correct before running the stream.
Last updated