批处理文件(1)功能:把文件夹F:\picture\I\my中的所有子目录中的文件复制到文件夹 F:\picture\I\asd中@echo offfor /r F:\picture\I\my %%i in (*.jpg) do if exist %%i copy "%%i" F:\picture\I\asd /ypause批处理文件(2)功能:把文件夹F:\picture\I\my下的文件夹里的文件重命名,递进重命名,从01开始。@echo off&Setlocal EnableDelayedExpansionset n=100for /r F:\picture\ Read More
posted @ 2011-07-08 21:51 lawdong Views(332) Comments(0) Diggs(0) Edit
http://home.cnblogs.com/ing/