2つのフォルダ内を比較する

チェックサムで比較する

Windows標準コマンド

 cmop dir1 dir2
 fc /b dir1 dir2

WinMerge

WinMergeを使う。

これらの方法は正確だが、時間が掛かる。

ファイル名とタイムスタンプとファイルサイズで比較する

robocopy

 robocopy dir1 dir2 /e /l

PowerShellでファイルリストを作って差分比較

 cd dir1
 dir -Recurse -File | % { $p = Resolve-Path -Relative $_; $p + "," + $_.CreationTime + "," + $_.Length } > ~/dir1.txt
 cd dir2
 dir -Recurse -File | % { $p = Resolve-Path -Relative $_; $p + "," + $_.CreationTime + "," + $_.Length } > ~/dir2.txt

トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS