标题: [文件操作] 批处理如何根据txt文本列出的文件列表批量将文件复制到指定文件夹/目录 [打印本页]
作者: 425528215 时间: 2016-7-29 22:04 标题: 批处理如何根据txt文本列出的文件列表批量将文件复制到指定文件夹/目录
本帖最后由 425528215 于 2016-7-29 23:23 编辑
从e:\asx\Windows\System32\复制到D:\qas\\Windows\System32\
从e:\asx\Windows\System32\zh-cn\复制到D:\qas\\Windows\System32\zh-cn\
如目标文件夹已经有此文件,不覆盖、不替换。
1.txt内容如下,
C:\Windows\System32\input.dll
C:\Windows\System32\zh-cn\input.dll.mui
C:\Windows\System32\ctfmon.exe
C:\Windows\System32\zh-cn\ctfmon.exe.mui
C:\Windows\System32\msctf.dll
C:\Windows\System32\zh-cn\msctf.dll.mui
C:\Windows\System32\MsCtfMonitor.dll
C:\Windows\System32\msctfp.dll
C:\Windows\System32\msctfui.dll
C:\Windows\System32\zh-cn\msctfui.dll.mui
C:\Windows\System32\msutb.dll
C:\Windows\System32\zh-cn\msutb.dll.mui
作者: gawk 时间: 2016-7-29 22:26
- @echo off
- for /f "delims=" %%i in ('type "1.txt"') do (
- copy /y "%%i" "D:\qas\"
- )
复制代码
作者: 425528215 时间: 2016-7-29 23:10
回复 2# gawk
如有文件重复,不覆盖,不替换!
作者: gawk 时间: 2016-7-30 07:51
回复 3# 425528215 - @echo off
- for /f "delims=" %%i in ('type "1.txt"') do (
- if not exist "D:\qas\%%~nxi" (
- copy "%%i" "D:\qas\"
- )
- )
复制代码
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |