Open File Picker
This node opens a file picker dialog. Noodl uses the system file picker dialog, meaning it works seamlessly with the users native device experience.
You can define what file types are allowed to be uploaded. This is done by entering a string of file types: each item needs to start with a period (.
) and be separated by a comma (,
). Leave the list blank if you want to accept any file type.
Signal | Description |
---|
Open | Send a signal to this input to open the file picker. |
Data | Description |
---|
Accepted file types | A comma separated list of file types that the user can select. Leave blank to accept any file type.
The file type can be specified as a filename extension, starting with a period. E.g. .png , .json or .png, .jpg .
The type can also be specified as a MIME type. E.g. image/* , image/png or video/mp4 . |
Outputs
Data | Description |
---|
File | A web file API Object. A File object. This can be used uploaded via Upload File, sent as a part of a REST call, processed in a Function node, used together with modules, or other tasks. |
Data | Description |
---|
Path | The local path to the file. |
Name | Name of the file, without the path. |
Size in bytes | Total size of the file in bytes. |
Type | The file type |
Signal | Description |
---|
Success | Triggered when the user has selected a file |