找到重複的文件

找到重複的文件

在 Windows 資源管理器中。如果需要的話,很樂意使用 cmd 提示字元/powershell。

我有資料夾 A,用答:1,2,3(1、2、3是資料夾A中的不同檔名)

資料夾B乙:1,2,3,4,5,6

所以文件1,2,3位於兩個資料夾。

我可以「從 B 中減去資料夾 A」嗎乙:4、5、6並且不再包含1,2,3(重複文件)

抱歉,如果沒有解釋清楚

我正在比較單一文件,而不是 1 個文字文件中的文件清單(對於重複的問題)

答案1

在 Windows 資源管理器中。如果需要的話,很樂意使用 cmd 提示字元/powershell。

你們願意接受申請嗎?如果是這樣,我可以根據經驗推薦,免費重複文件查找器

主要特徵

Powerful search engines (byte by byte and SHA-1)
Find files with same contents, same name and zero size.
Find duplicate pictures, videos, songs (mp3, wma, ogg).
Fastest among duplicate file finders and duplicate file cleaners.
Works with removable media devices like pendrives, external hard disks, etc.
Search local PC and over network.

Identify and recover wasted disk space
Reducing the time and media used for backups
Minimize time used to unneeded virus scanning
Increase free space on "limited" resources, like laptops and memory disks
Reduce files searching time

在此輸入影像描述

如果您不喜歡這樣(儘管我無法想像為什麼不喜歡),請向我們詢問另一個解決方案軟體推薦

答案2

PowerShell 選項:

-whatif 包含 --- 刪除以執行

$FolderA = 'c:\Folder\A'
$FolderB = 'c:\Folder\B'

(Get-ChildItem -Path $FolderA -file).Name |
      Remove-Item "$FolderB\$_" -whatif
   }

緊湊型:

(gci 'c:\Folder\A' -file).Name | %{ri "c:\Folder\B\$_"}

相關內容