美文网首页
删掉文件目录下的文件夹中特定后缀名的文件(python)

删掉文件目录下的文件夹中特定后缀名的文件(python)

作者: 小鱼儿spr | 来源:发表于2019-04-01 15:25 被阅读0次

    import os

    import sys

    def removeFile(path,type_extension):

            filelist = os.listdir(path)

            for file in filelist:

                filepath = os.path.join(path,file)

                if os.path.isdir(filepath):

                    removeFile(filepath,type_extension)

                else:

                    if os.path.splitext(filepath)[1]==type_extension:

                        os.remove(filepath)

    removeFile("D:\\英文版",r".txt") #这假设筛选的所有txt文件

    相关文章

      网友评论

          本文标题:删掉文件目录下的文件夹中特定后缀名的文件(python)

          本文链接:https://www.haomeiwen.com/subject/gsuvbqtx.html