This guide shows how to count files in directory linux using the wc command piped with ls or find. Techniques include ls | wc -l for visible files, find . -type f | wc -l for recursive counts, and filtering by extension. Use these methods for scripting and system-administration.