|
此文章由 5.5 原创或转贴,不代表本站立场和观点,版权归 oursteps.com.au 和作者 5.5 所有!转贴必须注明作者、出处和本声明,并保持内容完整
楼主家有windows7/8 否? , run below in powershell
第一行 是算hash的, 巨慢 (no win7)
第一行 是算file size的, 巨快 (win7/8) @newtoall
请叫我雷锋  
( Get-ChildItem -file -path C:\HomePicture\2015-01-01\*.JPG | Get-FileHash | select hash,Path | group -Property Hash | sort count |Where-Object {$_.Count -gt 1} ).Group
(Get-ChildItem -file -path C:\HomePicture\2015-01-01\*.JPG -Recurse | select Length,fullname | group -Property Length | sort count|Where-Object {$_.Count -gt 1} ).Group
|
评分
-
查看全部评分
|