I’ve this similar structure:
C:PARENT
|
+---SUB01
| file01
|
+---SUB02
| |
| ---SUB03
| file02
|
---SUB04
|
---SUB05
| file04
|
---SUB06
file03
I need to move all the files with bat code to the first SUB under parent, and after, delete all empty subfolders.
So to have:
C:PARENT
|
+---SUB01
| file01
|
+---SUB02
| file02
|
---SUB04
file03
file04
Help.
2