How to use the stat command for files that are in subfolders?

Instead of shell globing use find:

find . -type f -exec stat {} \; | tee output.txt