Ok, so I hope this is the right place for this question.
This is an example of the file structure I have now (the names are fictional and irrelevant to the question)

C:\Media\Movies\Folder<N>\%moviename%\<additional sub directories and files here>
C:\Media\Movies\Folder<N+1>\%moviename%\<additiona l sub directories and files here>
C:\Media\Movies\Folder<N+2>\%moviename%\<additiona l sub directories and files here>
etc

What I want to do is move\copy the 'moviename' subdirectories into one directory like:

G:\Whatever\%Moviename%\<additional sub directories and files here>

Basically I want to flatten the top levels of the tree while keeping those 4th from the top intact with their subdirectories and files.
Manually this would require me to navigate to the decade directory, select the movie name folders, and copy them into my destination.
I would like to do this with robocopy or xxcopy or something but cannot figure how to select a tree level to start with (given that the parent folders have a iteration at the end) or specify wildcards for directories etc...


Does anybody have any ideas how to do this automated?

Thanks