Hi,
Please see the below linux command to display files present
in multiple folder.
<SNIP>
find
Target_Directory -type f | wc -l
Target_Directory : your base directory
-type f : tells that files are to be searched not folders
</SNIP>