标题: [文件操作] 批处理怎样查找指定的文件并复制? [打印本页]
作者: wolonga123 时间: 2011-4-25 20:15 标题: 批处理怎样查找指定的文件并复制?
假如有个文件1.txt,我要查找这个文件所在文件夹,并把f盘下的2这个文件夹下的所有文件复制到1.txt所在文件夹下,麻烦各位高人改下- @echo off
- set "a=c: d: e: f: g: "
- for /f "delims= " %%i in (%a%) do ('dir/b/s/a-d %%i\1.txt')
- if exist 1.txt do copy f:\2\. %%~dpi
- pause
复制代码
作者: CrLf 时间: 2011-4-25 20:33
for /f "delims=" %%a in ('dir /s /b /a-d c:\1.txt d:\1.txt e:\1.txt f:\1.txt') do xcopy /s /y /h /r f:\2\ %%~dpa
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |