I'm using robocopy to search for a lot of old Illustrator files to convert. They reside in countless folders, and I want to copy all of them to a new working folder so I can batch process them.
My current command looks like this:
robocopy "C:\Files" "C:\IllustratorConversion" *.ai /E /dcopy:T /MT
However, that also creates all of the subfolders as well; there's maybe 600 files to convert, but over 7000 folders and subfolders!
Are there any robocopy flags I can use that will avoid this? e.g., something that will still search for files within subfolders, but copy them all to a single output folder.