Board logo

标题: [文件操作] 批处理如何把txt文件中记录的文件夹移动到指定的文件夹中? [打印本页]

作者: 颜宝宝    时间: 2017-8-2 16:53     标题: 批处理如何把txt文件中记录的文件夹移动到指定的文件夹中?

请教高手:如何把txt文件中记录的文件夹移动到指定的文件夹中   是移动文件夹
作者: Batcher    时间: 2017-8-2 17:52

试试 move 命令
作者: 3518228042    时间: 2017-8-2 23:32

  1. @echo off
  2. for /f "delims=" %%a in (文件夹路径.txt) do (
  3. move "%%a" "E:\"
  4. )
  5. pause
复制代码

作者: Nsqs    时间: 2017-8-4 12:59

  1. powershell -c "type '1.txt'|foreach{move $_ 'new\'}"
复制代码
一行流




欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2