Found a useful tip on how to combine a bunch of files from nested sub-folders into the parent folder…
In my case the folder name was Archive: find Archive/ -mindepth 2 -type f -exec mv -i '{}' Archive/ ';'
find Archive/ -mindepth 2 -type f -exec mv -i '{}' Archive/ ';'