This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import filecmp | |
def is_same_dirs(*args, dircmp: filecmp.dircmp = None) -> bool: | |
""" | |
Compare two directories recursively. | |
Files in each directory are assumed to be equal if their names and contents are equal. | |
:param dircmp: a filecmp.dircmp object that will be |