Drop folder watcher — File Event
Deployed, this fires whenever a file lands in the watched folder (create/modify/delete). Test simulates a “statement arrived” event so you can build the downstream flow now.
What’s inside
2 nodes — every type links to its full reference page.
| Step | Node | Type |
|---|---|---|
| Watch ./incoming | File Event | input.file-event |
| Intake | Console | utility.console |
Import it
- Studio → Import — paste the JSON below (or the URL
/docs/templates/drop-folder-watcher-file-event.json). - Or ask the AI Copilot with the JSON pasted after the phrase:
import this workflow json into a new workflow named "Drop folder watcher — File Event" - Any credentials the nodes need are
${credential.…}references — add them once in Admin → Credentials and the template picks them up. Nothing secret ships in a template.
The workflow document (flowdrome.workflow.v1, 2 node types)
{
"schemaVersion": "flowdrome.workflow.v1",
"id": "",
"name": "Drop folder watcher — File Event",
"version": "0",
"status": "draft",
"nodes": [
{
"id": "watch",
"type": "input.file-event",
"label": "Watch ./incoming",
"category": "io",
"config": {
"watchPath": "./incoming",
"eventPath": "file",
"requireEvent": true
},
"position": {
"x": 0,
"y": 0
}
},
{
"id": "out",
"type": "utility.console",
"label": "Intake",
"category": "utility",
"config": {
"message": "new file: {{ $json.file.path }} ({{ $json.file.kind }}) — start the intake flow"
},
"position": {
"x": 530,
"y": 0
}
}
],
"edges": [
{
"id": "e0",
"sourceNodeId": "watch",
"sourcePort": "output",
"targetNodeId": "out",
"targetPort": "input"
}
],
"triggers": [
{
"id": "t0",
"nodeId": "watch"
}
],
"meta": {
"snippets": [],
"source": "template-gallery",
"description": "Deployed, this fires whenever a file lands in the watched folder (create/modify/delete). Test simulates a “statement arrived” event so you can build the downstream flow now."
}
} Generated from the verified demo corpus — this exact document seeds and runs on a fresh Flowdrome. Raw JSON: drop-folder-watcher-file-event.json.