move files from many folders into another
FOR /R "C:\Source Folder" %i IN (*.png) DO MOVE "%i" "C:\Staging Folder"

If you want to put this into a batch file, change %i to %%i.