I have a large filesystem that I need to traverse for errors. Each file knows whether or not it contains an error, so I simply need to travel to each node and check whether there is an error there. Also, each directory knows the total number of errors that exists within, so a search can be terminated once the given number of errors is found, and a directory need not be traversed if it does not contain errors.
My question is whether the better solution to this would be to use a depth first or a breadth first search. The height of the tree is undefined, which I know usually makes BFS better, but given that we know if a directory will contain an error before traversing it, I am not sure if that advantage is mitigated.
Any answers are appreciated, and please support your answers as well.
NOTE: This is NOT a homework assignment. It is a requirement for a script that my boss has requested that I write.
EDIT 1: Time efficiency is far more important than space efficiency, as the script will primarily be run overnight, and therefore can essentially use all of the system memory, if necessary.
EDIT 2: Though is seems the popular answer is BFS for my problem, I am having trouble understanding why it would not be a DFS problem. Since (A) all errors need eventually be reached and (B) we know if a directory contains errors, BFS's protection against rabbit holes does not really apply. With that in mind, the only real difference seems to be space used, which would make DFS better. Can anyone give a good argument as to why this is not the case?