Como alternativa, este fragmento de una línea de AppleScript devolverá todas las carpetas con acciones de carpeta aplicadas:
tell application "System Events" to get the path of every folder action
--> {"/Users/CK/Scripts/AppleScript/scripts", "/Users/CK/Downloads", ...}
Este también puede ser útil, porque enumera la ruta real a los scripts o Automatizador flujos de trabajo que supervisan cada una de sus carpetas...
tell application "System Events" to get the POSIX path of every script of ¬
(every folder action where class of its scripts contains script)
...o una carpeta específica:
tell application "System Events" to return the POSIX path of every script of ¬
(every folder action where its path contains "/Users/CK/Desktop" and ¬
enabled of scripts contains true)