将 2 个文件夹与 filecmp 进行比较不起作用

Comparing 2 folders with filecmp is not working

我尝试比较 2 个文件夹,如果它们内部相等 -

我用这段代码试过了

print(path)
print(toPath)
print(filecmp.cmp(path, toPath))

但输出总是

C:\Users\Polzi\Documents\DEV\userza123\OLD_STRUCTURE\Billing\customers20\ZAT201
C:\Users\Polzi\Documents\DEV\userza123\NEW_STRUCTURE\Billing\customers\ZAT20120
False

但在我看来,它们是 100% 相等的:

文件夹 1:

文件夹 2:

知道为什么这 2 个文件夹根据 filecmp.cmp 函数不同吗?

我认为您正在尝试使用 dircmp rather then filecmp
filecmp :

Compare the files named f1 and f2, returning True if they seem equal, False otherwise.

目录:

Construct a new directory comparison object, to compare the directories a and b.