码迷,mamicode.com
首页 > 系统相关 > 详细

删除同目录下面txt文件(利用os,fnmacth模块)

时间:2018-02-21 10:50:39      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:bsp   pos   class   利用   filename   模块   port   listdir   std   

import os
import fnmatch
for filename in os.listdir(‘.‘):
    if fnmatch.fnmatch(filename, ‘*.txt‘): # 匹配模式为星号,表示任意的字符
        os.remove(filename)

删除同目录下面txt文件(利用os,fnmacth模块)

标签:bsp   pos   class   利用   filename   模块   port   listdir   std   

原文地址:https://www.cnblogs.com/o8o8o8/p/8456211.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!