Posted on February 16, 2021, 11:00 pm By xuan
No comments yet Categories: tech tips
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
.