Here is my folder structure:
parent/
child1/
child1.1/
child1.2/
child2/
child 2.1/
child 2.2/
child3/
child 3.1/
child 3.2/
How can I extract only the names of the third-level folders? (I haven't been able to find this online)
Output should be:
child1.1 ,child1.2
child2.1 ,child2.2
child3.1 ,child3.2
I referenced Java: how to get all subdirs recursively? to find subdirectories.
To make
level
parametric I suggest code:And call it:
Edit: I added verification in case of empty directory