python 递归遍历目录

|▌冷眼眸甩不掉的悲伤 提交于 2020-02-08 12:34:16
import osdef getAllDirRE(path, sp = ""):    #得到当前目录下所有的文件    filesList = os.listdir(path)    #处理每一个文件    sp += "   "    for fileName in filesList:        #判断是否是路径(用绝对路径)        fileAbsPath = os.path.join(path, fileName)        if os.path.isdir(fileAbsPath):            print(sp + "目录:", fileName)            #递归调用            getAllDir(fileAbsPath, sp)        else:            print(sp + "普通文件:", fileName)
getAllDirRE("D:\python")
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!