1 Star 0 Fork 1

johnny.yao.9th/PythonScript

forked from Admin/PythonScript 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
countFile.py 648 Bytes
一键复制 编辑 原始数据 按行查看 历史
injetlee 提交于 2016-06-23 23:27 . 0
import os
result = []
def get_all(cwd):
get_dir = os.listdir(cwd) #遍历当前目录,获取文件列表
for i in get_dir:
sub_dir = os.path.join(cwd,i) # 把第一步获取的文件加入路径
if os.path.isdir(sub_dir): #如果当前仍然是文件夹,递归调用
get_all(sub_dir)
else:
ax = os.path.basename(sub_dir) #如果当前路径不是文件夹,则把文件名放入列表
result.append(ax)
print(len(result)) #对列表计数
if __name__ == "__main__":
cur_path = os.getcwd() #当前目录
get_all(cur_path)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/nxz19/python-script.git
git@gitee.com:nxz19/python-script.git
nxz19
python-script
PythonScript
master

搜索帮助