通过powershell在文件夹中查找非重复文件

时间:2012-10-16 11:15:19

标签: powershell

我有一个包含文件的文件夹a.jpg,b.jpg,c.jpg,d.jpg,e.jpg等。其中有子文件夹,其中包含文件b.jpg,c.jpg,d.jpg

使用powershell我想要非重复的文件,例如a.jpg,c.jpg并将它们移动到其他位置。

感谢

1 个答案:

答案 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