The find is a command for recursively filtering objects in the file system based on a simple conditional mechanism. Use the find command to search for a file or directory on your file system. You used it in various conditions like you can find files by permissions, users, groups, file type, date, size, and other possible criteria.
$ find . -mtime -10 -ls
$ find . -size +100M