I'm trying and failing to select a folder at a specific subfolder depth. I can select a file within the folder, but not the folder itself.
Watched_folder ---> subfolder01 ---> subfolder02 ---> subfolder03
How do I write and order the rules to select subfolder03 (i.e. the folder itself, so I can copy it out to another location) ?
I currently have two rules:
- rule 1 : if kind is folder then run rules on folder contents
- rule 2 : if kind is folder and subfolder depth is 3 then set color to blue
nothing happens
but if I change kind from folder to file in rule 2, then the file within subfolder03 is colored blue. So I can grab the file but not the folder. What am I doing wrong?
Thanks