Is it safe to assume that Walk will go through every file in a subdirectory first before moving on to another one? #2847
Answered
by
BurntSushi
ItsSunnyMonster
asked this question in
Q&A
-
Basically what the title says. In the |
Beta Was this translation helpful? Give feedback.
Answered by
BurntSushi
Jun 29, 2024
Replies: 1 comment 1 reply
-
I don't think so, no. And you especially can't when using I believe single threaded will use depth first traversal. So you shouldn't even be seeing the behavior you're asking for (breadth first search) in practice... |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
BurntSushi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I don't think so, no. And you especially can't when using
WalkParallel
.I believe single threaded will use depth first traversal. So you shouldn't even be seeing the behavior you're asking for (breadth first search) in practice...