栈的使用
Posted wfw001-2018
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了栈的使用相关的知识,希望对你有一定的参考价值。
import os
import collections
#通过栈遍历目录(深度遍历)
def test(path):
stack=[]
stack.append(path)
#处理栈
while len(stack)!=0:
dirpath=stack.pop()
filelist=os.listdir(dirpath)
for filename in filelist:
fileAbsPath=os.path.join(dirpath,filename)
if os.path.isdir(fileAbsPath):
stack.append(fileAbsPath)
else:
print("文件:"+filename)
path=r"C:UsersHPDesktoppython基础知识"
test1(path)
以上是关于栈的使用的主要内容,如果未能解决你的问题,请参考以下文章