MCPcopy Index your code
hub / github.com/injetlee/Python / get_all

Function get_all

countFile.py:3–12  ·  view source on GitHub ↗
(cwd)

Source from the content-addressed store, hash-verified

1import os
2result = []
3def get_all(cwd):
4 get_dir = os.listdir(cwd) #遍历当前目录,获取文件列表
5 for i in get_dir:
6 sub_dir = os.path.join(cwd,i) # 把第一步获取的文件加入路径
7 if os.path.isdir(sub_dir): #如果当前仍然是文件夹,递归调用
8 get_all(sub_dir)
9 else:
10 ax = os.path.basename(sub_dir) #如果当前路径不是文件夹,则把文件名放入列表
11 result.append(ax)
12 print(len(result)) #对列表计数
13
14if __name__ == "__main__":
15 cur_path = os.getcwd() #当前目录

Callers 1

countFile.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected