I am parsing a folder structure that is quite heavy (in terms of the number of folders and files). I have to go through all the folders and parse any files I come across. The files themselves are small (1000-2000 characters although a few are bigger). I have two options:
- Go through all the folders and files and parse any that I come across in one big recursive loop.
- Go through all the folders and store the paths of all the files that I come across. The in another loop, parse the files by referring to the stored file paths.
Which option would be better and maybe faster (the speed will most likely be I/O bound so most likely will not make a difference, but I thought I'd ask anyway)?