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?

link|improve this question

80% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Dir supports wildcards, so:

dir *.txt
link|improve this answer
Oh thanks a lot :) – Johnydep Jan 26 at 15:14
It does quite a bit more also, try...Dir /? – EBGreen Jan 26 at 15:19
i tried but it did not show me * option, rest i know. – Johnydep Jan 26 at 15:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.