我有一个包含文件的文件夹a.jpg,b.jpg,c.jpg,d.jpg,e.jpg等。其中有子文件夹,其中包含文件b.jpg,c.jpg,d.jpg
使用powershell我想要非重复的文件,例如a.jpg,c.jpg并将它们移动到其他位置。
感谢
答案 0 :(得分:1)
尝试使用Compare-Object cmdlet:
$parent = Get-ChildItem D:\temp -Filter *.jpg
$child = Get-ChildItem D:\temp\test -Filter *.jpg
Compare-Object $parent $child -Property Name -PassThru | Copy-Item -Destination $Destination