python - copy files and folders to another path using batch -


i have directory c:/go , inside go there tons of folders, subfolders , files.

i need find inside go, files start net*.inf , oem*.inf , , copy folder, subfolders , files palce @ c:/

it must automatic using windows... batch script, c++, python...vbs pleasee!! in advance

from command line, 1 way combine xcopy for loop:

for /d %i in (net oem) xcopy /s c:\go\%i*.inf c:\go2\ 

in batch file replace %i %%i.


Comments

Popular posts from this blog

linux - Using a Cron Job to check if my mod_wsgi / apache server is running and restart -

actionscript 3 - TweenLite does not work with object -

jQuery Ajax Render Fragments OR Whole Page -