Question
Pro Tip: Creating search paths file quickly.
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.

