I found that I can use xcopy /s to copy all files matching the permutation combinations in a folder to another location. But this command re-creates the folder structure. I do not want a tree. I only need files dumped to the destination folder. There are no duplicate files in the source folder.
xcopy /s
You can use the for command:
for
for /R %%x in (*.cpp) do copy "%%x" "c:\dest\"
If you want to run it directly from the command line (and not from a batch file), use% x instead of %% x.
For your purpose, instead of using xcopy you should use robocopy:
http://en.wikipedia.org/wiki/Robocopy
http://technet.microsoft.com/en-us/library/cc733145(WS.10).aspx
Source: https://habr.com/ru/post/897448/More articles:https://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/897443/what-is-the-correct-usage-of-cmake-externalprojectadd-with-a-git-repository&usg=ALkJrhgQHLfi5VIEf0RC5sJMRMfPGxoF8ARecover from Core Data error in saveContext - ioshttps://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/897445/dialog-asking-if-user-wants-to-allow-use-of-location-services-pops-and-disappears-in-iphone&usg=ALkJrhghLW9xLT2-4iQOJXjvl4SuhAsM_wScrollViewer steals focus - wpfThe address of each character is std :: string - c ++Is it possible to dynamically remove the meta refresh tag from the header using jQuery? - jqueryType .GetType (string typeName) returns null - reflectionCucumbers and rspec share factory girls factory - ruby-on-railsHow to detect missing ink - windowsCSRF validation failed, but only with IE9 - djangoAll Articles