0

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

使用 powershell 我想要非重复文件 ieajpg、c.jpg 并将它们移动到其他位置。

谢谢

4

1 回答 1

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
于 2012-10-16T12:07:43.673 回答