最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

Python通配符删除文件

来源:懂视网 责编:小OO 时间:2020-11-27 14:21:59
文档

Python通配符删除文件

# -*- coding: utf-8 -*-";";";使用通配符,获取所有文件,或进行操作,# -*- coding: utf-8 -*-";";";使用通配符,获取所有文件,';*.c';): # print i。
推荐度:
导读# -*- coding: utf-8 -*-";";";使用通配符,获取所有文件,或进行操作,# -*- coding: utf-8 -*-";";";使用通配符,获取所有文件,';*.c';): # print i。

下面为大家分享一篇Python 通配符删除文件的实例,具有很好的参考价值,希望对大家有所帮助。一起过来看看吧

# -*- coding: utf-8 -*-
"""
使用通配符,获取所有文件,或进行操作。
"""
import glob
import os
def files(curr_dir = '.', ext = '*.exe'):
 """当前目录下的文件"""
 for i in glob.glob(os.path.join(curr_dir, ext)):
 yield i
def all_files(rootdir, ext):
 """当前目录下以及子目录的文件"""
 for name in os.listdir(rootdir):
 if os.path.isdir(os.path.join(rootdir, name)):
 try:
 for i in all_files(os.path.join(rootdir, name), ext):
 yield i
 except:
 pass
 for i in files(rootdir, ext):
 yield i
def remove_files(rootdir, ext, show = False):
 """删除rootdir目录下的符合的文件"""
 for i in files(rootdir, ext):
 if show:
 print i
 os.remove(i)
def remove_all_files(rootdir, ext, show = False):
 """删除rootdir目录下以及子目录下符合的文件"""
 for i in all_files(rootdir, ext):
 if show:
 print i
 os.remove(i)
if __name__ == '__main__':
 remove_all_files('.', '*.o', show = True)
 # remove_all_files('.', '*.exe', show = True)
 remove_files('.', '*.exe', show = True)
 # for i in files('.','*.c'):
 # print i

文档

Python通配符删除文件

# -*- coding: utf-8 -*-";";";使用通配符,获取所有文件,或进行操作,# -*- coding: utf-8 -*-";";";使用通配符,获取所有文件,';*.c';): # print i。
推荐度:
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top