import os path = r'' fileFinalName = '' def delTxt(path): lists = os.listdir(path) for file in lists : if file.split('.')[-1] == fileFinalName: os.remove(path+'\\'+file) if __name__ == '__main__': delTxt(path)
import os path = r'' fileFinalName = '' def delTxt(path): lists = os.listdir(path) for file in lists : if file.split('.')[-1] == fileFinalName: os.remove(path+'\\'+file) if __name__ == '__main__': delTxt(path)