标题: [文件操作] 批处理怎么实现随机复制文件到指定目录? [打印本页]
作者: kennyzdh 时间: 2019-7-5 06:30 标题: 批处理怎么实现随机复制文件到指定目录?
例如 A:\copy 目录有N个文件,格式为.jpg
我想把它复制到C:\copy目录,每次复制数量可以设定,比如5-10个文件数量之间。
这个批处理应该怎么写,请帮忙指导下,谢了
作者: smss 时间: 2019-7-5 07:15
本帖最后由 smss 于 2019-7-5 07:36 编辑
- @echo off
- set "文件路径=A:\"
- set "目标路径=C:\"
- set "数量=5"
- cd /d "%文件路径%"
- powershell ^
- $files=@(dir^|?{($_ -is [System.IO.FileInfo]) -and ($_.Name -ne '%~nx0')});^
- $n=1;$list=get-random -input $files -count $files.length;^
- for($i=0;$i -lt $list.length;$i++){^
- if(-not (test-path -liter %目标路径%$n)){[void](md %目标路径%$n);};^
- write-host ($list[$i].Name+' --^> '+$n);^
- copy -liter $list[$i].Name %目标路径%$n;^
- if((($i+1) %% %数量%) -eq 0){$n++;};^
- }
- pause
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |