23

On Windows, we can see directory content using the DIR command.

I want to know, how can one see the list of only those files which have particular extension, e.g I want to see list of all .txt files, what command I should run?

Dennis
  • 50,701
Johnydep
  • 1,155

3 Answers3

29

Dir supports wildcards, so:

dir *.txt
EBGreen
  • 9,655
8

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 .

srdg
  • 181
7
dir /S *.txt 

will show files with ".txt" suffix in specified directory and all sub-directories.