I have hundreds over folders with structure like this:
PARENT\FolderA\Subfolder01\files1.iso
PARENT\FolderB\Subfolder02\files2.iso
PARENT\FolderC\Subfolder03\files3.iso
I want to move all the files1.iso
, files2.iso
, files3.iso
up one level respectively. Should look like this.
PARENT\FolderA\files1.iso
PARENT\FolderB\files2.iso
PARENT\FolderC\files3.iso
And what would be even better is something that work to delete the Subfolder01
, Subfolder02
, Subfolder03
which are not wanted.
And if possible, as well batch rename those files1.iso
, files2.iso
, files3.iso
to the name of FolderA.iso
, FolderB.iso
, FolderC.iso
respectively.
I really have no idea how to work this out. Anybody can help?