Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a folder containing files a.jpg, b.jpg, c.jpg, d.jpg, e.jpg etc. There is sub-folder within which contains files b.jpg, c.jpg, d.jpg.

Using powershell I want non-duplicated files i.e. a.jpg, c.jpg and move them to some other location.

thanks

share|improve this question
You mean that you want non-duplicated file names or file contents? – Paolo Tedesco Oct 16 '12 at 12:08
yes, non duplicated files in a folder. – Gungh13 Oct 16 '12 at 13:48

1 Answer

up vote 1 down vote accepted

Try with the 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
share|improve this answer
it is showing this error. Compare-Object : Cannot bind argument to parameter 'DifferenceObject' because it is null. At C:\Users\busy\desktop\nondup.ps1:5 char:15 + Compare-Object <<<< $parent $child -Property Name -PassThru | Copy-Item -Destination $Destination + CategoryInfo : InvalidData: (:) [Compare-Object], ParameterBindingValidationException + FullyQualifiedErrorId : ParameterArgumentValidationErrorNullNotAllowed,Microsoft.PowerShell.Commands.Com‌​pareObje ctCommand – Gungh13 Oct 16 '12 at 13:54
What's in $child? Is it empty? – Shay Levy Oct 16 '12 at 14:06
$child contains location of folder where there are copies of files.I have many subfolder which contain copies in main folder,main folder itself contains alot of images. – Gungh13 Oct 16 '12 at 14:14
it is copying duplicate files, instead of non duplicate. – Gungh13 Oct 16 '12 at 14:27
What do you get for: Compare-Object $parent $child -Property Name -PassThru ? I get just a.jpg and e.jpg. Isn't this the result you're looking for? – Shay Levy Oct 16 '12 at 18:53
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.