Search with file extension in Windows
Search with file extension in Windows Enter that from whatever directory you want to start. FOR /R will do the rest for every single file extension (*.xls) that’s in the descendants of the launching directory. for /r %d in (*.xls) do echo %d >> c:\temp\Output.txt TimeSaver....!!!!