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
Post a Comment