gpt4 book ai didi

python - 你如何计算文件夹中的子目录?

转载 作者:太空宇宙 更新时间:2023-11-04 07:29:46 25 4
gpt4 key购买 nike

我想出了如何对文件夹中的目录进行计数,但不确定如何编辑我的代码以递归地对子目录进行计数。任何帮助将不胜感激。

到目前为止,这是我的代码。

def nestingLevel(path):
count = 0
for item in os.listdir(path):
if item[0] != '.':
n = os.path.join(path,item)
if os.path.isdir(n):
count += 1 + nestingLevel(n)
return count

最佳答案

我想你可能想使用 os.walk :

import os

def fcount(path):
count1 = 0
for root, dirs, files in os.walk(path):
count1 += len(dirs)

return count1

path = "/home/"
print fcount(path)

关于python - 你如何计算文件夹中的子目录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50452437/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com