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

javascript - Iterate over array and calculate average values of array-parts -

iphone - Using nested NSDictionary with Picker -

objective c - Newbie question -multiple parameters -