在Python中,是否有某种库函数或其他方法来获取某个文件的硬链接计数?

最佳答案

使用st_nlink

os.stat("foo.txt").st_nlink

10-06 12:04