Skip to main content

Open File Picker

This node opens the system file dialog.

The Open File Picker node allows users to select files from their device for upload.

The Open File Picker node triggers the native file selection dialog. It returns a File object (or array of files) that can be uploaded using the Upload File node or displayed (if an image).

Inputs

Configuration

DataDescription
AcceptFile types to accept (e.g., "image/*", ".pdf,.doc").
MultipleBoolean. Allow selecting multiple files.

Actions

SignalDescription
OpenOpens the dialog.

Outputs

Data

DataDescription
FilesAn array of File objects selected by the user.

Events

SignalDescription
SelectedTriggered when the user confirms selection.
CanceledTriggered if the user closes the dialog without selecting.

Usage

Upload Button

  1. Button Click -> Open File Picker (Open).
  2. Selected -> Upload File (Do).
  3. Connect Files to Upload File input.

Detailed Behavior

  • Security: Must be triggered by a user action (like a click) in most browsers.

Troubleshooting

  • No Popup: Ensure the Open signal is directly downstream of a user interaction event.