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?
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?
dir /S *.txt
will show files with ".txt" suffix in specified directory and all sub-directories.