I need to get a total count of JPG files within a specified directory, including ALL it\'s subdirectories. No sub-sub directories.
Structure looks like this :
The answer by Developer is actually brilliant! Use it like this to make it work:
System("find . -type f -print | wc -l");