Community Tip - You can change your system assigned username to something more personal in your community settings. X
command in windows :
dir /b /s /a:d > folders.txt
This command will output a text file with all the recursive folders found in the current path where the command runs.
it will create a file with all the sub directories recursively found in the starting path, and will write this out to folders.txt. This can be used and renamed to search paths file.
It will save you a lot of time for having to create this file manually.
Previous discussion with utility (DOS batch) script to do things automatically.
Should take care of things like putting quotes around the directory specifications. If any white space is in a directory name, the search.pro file will not work if directories are not surrounded by quotes.