[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[文件操作] 批处理如何根据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
1

评分人数

  1. @echo off
  2. for /f "delims=" %%i in ('type "1.txt"') do (
  3.     copy /y "%%i" "D:\qas\"
  4. )
复制代码
1

评分人数

Talk is cheap. Show me the code.
没事不要瞎扯淡,有能耐就把代码贴出来给我看。

TOP

回复 2# gawk
如有文件重复,不覆盖,不替换!

TOP

回复 3# 425528215
  1. @echo off
  2. for /f "delims=" %%i in ('type "1.txt"') do (
  3.     if not exist "D:\qas\%%~nxi" (
  4.         copy "%%i" "D:\qas\"
  5.     )
  6. )
复制代码
Talk is cheap. Show me the code.
没事不要瞎扯淡,有能耐就把代码贴出来给我看。

TOP

返回列表