I\'m trying to figure out the best way to find the number of files in a particular directory when there are a very large number of files (more than 100,000).
When the
Use find. For example:
find . -name "*.ext" | wc -l