Monthly Archives: February 2021
Movies and TV

https://cineb.net/

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.