import os
import fnmatch
for filename in os.listdir(‘.‘):
if fnmatch.fnmatch(filename, ‘*.txt‘): # 匹配模式为星号,表示任意的字符
os.remove(filename)
删除同目录下面txt文件(利用os,fnmacth模块)
Posted o8o8o8
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了删除同目录下面txt文件(利用os,fnmacth模块)相关的知识,希望对你有一定的参考价值。
以上是关于删除同目录下面txt文件(利用os,fnmacth模块)的主要内容,如果未能解决你的问题,请参考以下文章