From what I observe filecmp.dircmp
is recursive, but inadequate for my needs, at least in py2. I want to compare two directories and all their contained files. Does this exist, or do I need to build (using os.walk
, for example). I prefer pre-built, where someone else has already done the unit-testing :)
The actual 'comparison' can be sloppy (ignore permissions, for example), if that helps.
I would like something boolean, and report_full_closure
is a printed report. It also only goes down common subdirs. AFIAC, if they have anything in the left or right dir only those are different dirs. I build this using os.walk
instead.