Saturday, October 24, 2015

Recusivly finding files by extension in DOS

Need to find all files of a specific extension in DOS.  Here is a command that will recursively look through a directory structure and list only those files with that exact extension:
dir /s/b *.mp3 | findstr /v .mp3.

No comments:

Post a Comment