批量删除文件

批量删除当前目录下后缀为.txt的文件

a = os.getcwd()
b = os.listdir()
for i in b:
    # 分割路径,返回路径名和文件扩展名的元组
    ext = os.path.splitext(i)
    if ext[1] == '.txt':
        file = os.path.join(a, i)
        os.remove(file)
posted @ 2019-11-07 14:38  極9527  阅读(165)  评论(0编辑  收藏  举报