I am using the folder watcher integration for letting me know when files are created, but I would like to add more than one folder to be watched and be able to differentiate in the automations when the different files are created. Is this possible?
folder_watcher:
- folder: /config
The -
in the examples denotes a list.
So you can do, e.g.
folder_watcher:
- folder: /number1
- folder: /number2
You will be abled to differentiate through the generated events folder
attribute
Ok great thanks for your help.