本帖最后由 Nsqs 于 2023-10-11 21:45 编辑
- #PowerShell 随机不重复复制
- md new_jpg -Force|Out-Null
- [System.Collections.Generic.Dictionary[string,string]]$list=@{}
- dir *.jpg -Depth 1|%{$list[$_.Name]=$_.FullName}
- dir new_jpg|%{$list.Remove($_.Name)}|Out-Null
- $list.Keys|Get-Random -Count 3|%{copy $list[$_] "new_jpg" -Force}
复制代码
|