Mica
Mica

Reputation: 382

Comparison tool with option to check file names only?

I'm looking for a folder comparison tool that has an option to check file names only, not timestamps or content.

I've tried Araxis Merge, Beyond Compare, and WinMerge, but none seem to have this option.

Upvotes: 3

Views: 2333

Answers (2)

Zoë Peterson
Zoë Peterson

Reputation: 13332

Beyond Compare does support that. Use the Session->Session Settings... menu item and on the Comparison tab uncheck everything. If you want to check for case changes check the Compare filename case option.

Upvotes: 3

Paulo Santos
Paulo Santos

Reputation: 11587

Well, if you need a comparison list, that only schecks the name of the file, a very easy way to do it would be with two xcopy commands:

xcopy "<source>" "<dest>" /e /l /f >\fullList.txt

xcopy "<source>" "<dest>" /e /l /u /f >\equals.txt

Upvotes: 0

Related Questions