Does a program exist for checking two similar directories for file differences?
        Posted  
        
            by John Sullivan
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by John Sullivan
        
        
        
        Published on 2010-03-26T20:12:13Z
        Indexed on 
            2010/03/26
            20:23 UTC
        
        
        Read the original article
        Hit count: 332
        
Is there a program to compare one folder and all subfolders to another folder and all subfolders for differences in the files contained therein (presence, absence of files, size and list of filenames)?
Example of usage: I have 100 DLL files from environment 1 and I want to check if any of them are different (in size and date modified) from the 100 DLL files in environment 2. So I copy and paste all the DLLs in environment 1 into directory A, and all the DLLs in environment 2 into directory B.
I then run my "directory comparison" program on directories A and B and find out that, aha, here is a list of 7 DLLs that have different modified dates and times between the two directories.
EDIT: OS is windows XP
© Stack Overflow or respective owner