DAIC 当前离线
中将
@echo on title 音频备份 if not exist e:\笑笑课程\ ( md e:\笑笑备份 ) if exist mp3.txt ( del /f /q mp3.txt ) dir /s /b /a-d /a c:|findstr /i "2012最火铃声.*\.mp3$" >mp3.txt for /f "delims=" %%i in (mp3.txt) do ( xcopy /y /h "%%i" e:\笑笑备份 )复制代码
TOP
@echo on title 音频备份 if not exist e:\笑笑课程\ ( md e:\笑笑备份 ) for /f "delims=" %%i in ('dir /s /b /a-d /a c:^|findstr /i "2012最火铃声.*\.mp3$"') do ( xcopy /y /h "%%i" e:\笑笑备份 )复制代码