I need to batch copy two folders, let's call them A and B, from F:\Sourcefolder\
to F:\destinationfolder
subfolders (not to destination folder itself).
Now I know when batch copying file (file.exe
for example) it is supposed to look something like this
for /r "F:\destinationfolder" %%i in (.) do @copy "F:\Sourcefolder\file.exe" "%i"
In each of those subfolders there is a lot of files. After copying A and B folders to all subfolders, I would like to move all files within the subfolders to folder A within their folder. Is this possible to do?