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.
- Earlier nodes read and process the file at
inbox/order-553.pdf. - Add a MOVE_FILE_IN_STORAGE node. Set
sourceKeytoinbox/order-553.pdfanddestinationKeytoarchive/2026/order-553.pdf. - 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/…)