How can I find a directory with a certain name but only if it is in another directory with a certain name? For example when I have the following directory structure
a
├── b
│ └── e
├── c
│ └── e
└── d
I'd like to find the directory 'e', but only when it is located in a directory called 'c'. If possible with the find command alone without using grep.