Tip: List files and save in a text file
A quick tip for obtaining a list of files in sub folders and presenting the results in a list suitable for loading into programs like Excel:
dir "folderpath" /s /b /a-d >outputname.csv
This can also be combined with the find command to filter the results
dir "folderpath" /s /b /a-d |find "word" >outputname.csv
Multiple finds can be used to further refine the list:
dir "folderpath" /s /b /a-d |find "word1" | find "word2" >outputname.csv
These commands could be placed into a .cmd file then placed as a shortcut on the desktop.





