Skip to main content

Files

No third-party account—file values flow between nodes like any other data.

Create Text File

Inputs: content (string); fileName. Output: file — new file value.

Rename File

Inputs: file; name — new filename (no path semantics beyond what the platform applies). Output: renamedFile.

Download File from URL

Inputs: url; optional filename (otherwise derived from the URL). Output: file — downloaded bytes as a file.

Convert File to Data URL

Input: file. Output: dataUrldata:…;base64,… string suitable for HTML or APIs.

Convert Data URL to File

Input: dataUrl — well-formed data URL string. Output: file — decoded file.