window bat脚本批量拷贝文件
find©.bat
`
@ECHO OFF
@for /f %%i in (fileNameList.txt) do (
echo begin copy... %%i
echo find file ... C:\Users\Administrator\Desktop\bat\test%%i
copy /y "C:\Users\Administrator\Desktop\bat\test%%i" "C:\Users\Administrator\Desktop\bat\copy"
echo copy complate ... %%i
)
pause
`
其中,fileNameList.txt 需要拷贝的文件列表,每个文件一行:例如
2.txt
3.txt
test文件夹是源文件夹
copy文件夹是目的文件夹
注意:fileNameList.txt和bat脚本要放在同一个目录下面