Is there a utility that will generate a list of all file-names of a particular type in a given folder, and allow that list to be printed?
Windows search fulfills my UI wish-list but the search output can not be printed.
This may be done to some extent using a shell-script.
for /r %f in (*.*) do echo %~nF >> report.txt
The output listing however is not necessarily alphabetical. More importantly the search filter file-type must be changed through the console. The reason I'm looking for a UI as well is that the facility may be used by others in my family who are a lot less tech-savvy than I; people for whom just bring up the console is significant effort.
In a nut-shell I'm looking for an application that will:
List all files of a given type at a given location
Allow the listing to be sorted visually
Print the listing as it is rendered