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

Posted o8o8o8

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了删除同目录下面txt文件(利用os,fnmacth模块)相关的知识,希望对你有一定的参考价值。

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

以上是关于删除同目录下面txt文件(利用os,fnmacth模块)的主要内容,如果未能解决你的问题,请参考以下文章

python利用os和getopt实现删除指定文件

os删除文件或者文件夹

如何用Python删除一个文件?

批量删除文件

python实现删除文件与目录的方法

os VS shutil