重複ファイルを見つける

重複ファイルを見つける

Windows エクスプローラー内。必要に応じて、cmd プロンプト/powershell を使用できます。

フォルダAがあります。答え:1,2,3(1、2、3はフォルダA内の異なるファイル名です)

フォルダBB:1,2,3,4,5,6

ファイル1,2,3両方のフォルダにあります。

「フォルダAからフォルダBを引く」ことはできますか?B: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\$_"}

関連情報