Python3.x:os.listdir和os.walk(获取路径方法)的区别 1,os.listdir 使用情况:在一个目录下面只有文件,没有文件夹,这个时候可以使用os.listdir: 例如:d:\listdir文件夹下有三个文件(text1.txt.test2.txt.test3.txt),获得文件的绝对路径: import os path = r'd:\listdir' for filename in os.listdir(path): #目录的路径和文件名拼接起来,得到了文件的绝路路
[python's fnmatch&glob&os.listdir] fnmatch: fnmatch只有4种special character,用于提供和shell中一样的文件名的匹配. For a literal match, wrap the meta-characters in brackets. For example, '[?]' matches the character '?'. 主要函数有: fnmatch.fnmatch(), fnmatch.fnmatchcase()
#获取某文件夹下制定类型文件# import os# def filep(fp):# l=[]# a=os.walk(fp) #生成器# for nowp,sonp,oth in a: #当前目录,子文件夹(一级),其他文件费文件夹# for i in oth:# if os.path.splitext(i)[1]=='.py':#splitext分离路径和文件名# l.append(i)# return l# print(filep("D:\\1")) #==============