How to copy files from folder tree dropping all the folders with Robocopy?
Why use robocopy? It’s a good tool for a specific task but this is not the one. You can simply use what cmd already gives you: for /r %f in (*) do @copy “%f” target This will essentially “flatten” your directory hierarchy. for /r will walk a directory tree recursively, looking for file names matching … Read more