EzFlowEzFlow Docs
Node referenceFiles & PDF

MOVE_FILE_IN_STORAGE

MOVE_FILE_IN_STORAGE node.

What it does

MOVE_FILE_IN_STORAGE node.

Inputs & outputs

Input handle
None
Output handle
None

Configuration

No configuration.

Example

How it works

MOVE_FILE_IN_STORAGE relocates a file within the same storage bucket. Provide a sourceKey (where the file currently lives) and a destinationKey (where it should end up); the node moves the object and returns nothing. Use it to organize files after processing — for example, sweeping completed items into an archive prefix.

Example

Scenario: After a Workflow finishes processing an uploaded document, archive it.

  1. Earlier nodes read and process the file at inbox/order-553.pdf.
  2. Add a MOVE_FILE_IN_STORAGE node. Set sourceKey to inbox/order-553.pdf and destinationKey to archive/2026/order-553.pdf.
  3. The file is moved under the new key; downstream lookups should reference the archive path from here on.
PROCESS ──► MOVE_FILE_IN_STORAGE (inbox/… → archive/…)

On this page