I have scenario to process the files in python
my process tree structure is like
dirctory
.
...subdir1
.
....sub-sub-dir1
.
. ..file1
First I need to go the subdir1 and read one by one sub-sub-dirs (1 to n) and get the file from the sub-sub-dir and process.
Like this process all the files in sub-sub-dirs then go back to the sub-dir loop.
Read next subdir and read the one by one sub-sub-dirs and get the file from the sub-sub-dir and process.
Please, help me out how can we do the above in Python. I would be grateful to you if I get a quick response.
Thanks