If I want to find a file by name, I do the following:
find -name app
If I want to find a file by type, I do the following:
find -name app -type d
However, because app is such a generic name, many results show up. I would like to find a directory named app, which was created today. Is there a flag or command to achieve this?