I am manipulating a whole bunch of files and placing them in a different directory. What I need to do now is find out which files are in the original directory that aren't in the output directory (the problem is being processed by a dozen computers). Is there any script I can run on Windows that will display this?
|
feedback
|
migrated from stackoverflow.com Jan 29 '10 at 7:44
This question came from our site for professional and enthusiast programmers.
|
Use WinDiff. It comes with Visual Studio and Platform SDK and can be downloaded separately. It's mainly to compare files, but it also allows you to recursively compare folders. | |||
|
feedback
|
|
If you are looking for a manual process and have visual studio installed, then you can use windiff.exe to show the differences. | |||
|
feedback
|
|
In PowerShell:
| |||
feedback
|
|
you can try this vbscript, no need to download any stuff.
output
| |||
|
feedback
|
|
FreeCommander does this quickly. Pick folder on right, pick folder on left, compare. It's a handy utility. | |||
|
feedback
|