Hello Guys,
I'm going to implement recursive folder comparison on python. What do you think would best algorithm for this?
- Get two lists of the files for the folders
- Sort both lists
- Compare using filecmp module for a file
- Repeat for every folder recursively
In result I need to get only the list of the files that are different (content difference is not needed here), the list of the files that are missing in one of the comparable folders.
Thank you.