I need a file system walker that I could instruct to ignore traversing directories that I want to leave untouched, including all subdirectories below that branch. The os.walk and os.path.walk just don't do it.
|
feedback
|
|
Actually,
| |||||||||||||||||||||
feedback
|
|
It is possible to modify the second element of
Now, you can just hand in a predicate for subdirectories:
| |||
|
feedback
|
|
So I made this home-roles walker function:
| |||
|
feedback
|
|
Here's the best and simple solution.
Remember, if you remove the folder name from dirs, it won't be explore by os.walk. hope it helps | |||
|
feedback
|