python-列出所有目录及子目录文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python-列出所有目录及子目录文件相关的知识,希望对你有一定的参考价值。
列出当前目录及文件
from pathlib import Path
srcPath = Path(‘../src/‘)
[x for x in srcPath.iterdir() if srcPath.is_dir()]
列出指定目录及子目录下的所有文件
from pathlib import Path
srcPath = Path(‘../tensorflow-r1.11/‘)
allFn=[]
allPath=[srcPath,]
i=1
while len(allPath)>0:
nowPath=allPath.pop()
pathInfo=[(x,x.is_dir()) for x in nowPath.iterdir() if nowPath.is_dir()]
for fn,isPath in pathInfo:
print("正在寻找:","<",str(i),">",fn)
if not isPath:
print("找到新文件:",fn)
allFn.append(fn)
else:
print("找到新目录:",fn)
allPath.append(fn)
i+=1
print(nowPath,end="===>")
print("寻找完毕")
print("寻找完毕,共{}个目录及文件".format(i))
下面这种方式更简洁
list(Path(‘../tensorflow-r1.11/‘).glob(‘/*‘)
以上是关于python-列出所有目录及子目录文件的主要内容,如果未能解决你的问题,请参考以下文章