List only files of a particular extension with the DIR command
Dir supports wildcards, so:
dir *.txt
dir /S *.txt
will show files with ".txt" suffix in specified directory and all sub-directories.
You can list only the filenames without the extra information added with the command
dir /b *.[extension]
.
A more comprehensive list can be found here .