方法一
#!/usr/bin/env python import os dir=‘/etc‘ def fr(dir): filelist=os.listdir(dir) for i in filelist: fullfile=os.path.join(dir,i) if not os.path.isdir(fullfile): if i == "1.txt": //1.txt为你所查找的文件名 print fullfile else: fr(fullfile) fr(dir)
方法二
#!/usr/bin/env python import os dir=‘/etc‘ def fw(dir): for root,dirs,files in os.walk(dir): for f in files: if f == "1.txt": #os.remove(os.path.join(root,f)) print os.path.join(root,f) fw(dir)
//os.walk(dirpath,dirname,filename) import os for root, dirs, files in os.walk(paramter): print root #当前遍历到的目录的根 print dirs #当前遍历到的目录的根下的所有目录 print files #当前遍历到的目录的根下的所有文件
时间: 2024-10-17 14:16:28