I had tried to make batch script that copies all *.tif files located in D:\\images(random named subfolders here) to d:\\all.
xcopy D:\\Downloads\\*.TIF D:\\temp\
pushd D:\Source for /r %%a in (*.?*) do ( MOVE "%%a" "D:\Destination folder\%%~nxa" ) popd