Answers for "how to delete all files in a folder python"

5

python delete all files in directory

import os

filelist = [ f for f in os.listdir(mydir) if f.endswith(".bak") ]
for f in filelist:
    os.remove(os.path.join(mydir, f))
Posted by: Guest on June-05-2020
0

delete all files in a directory python

import os
mydir = "example/"
filelist = [f for f in os.listdir(mydir) if f.endswith(".bak") ]
#if f ends with .bak: change this to any file entension
for f in filelist:
    os.remove(os.path.join(mydir, f))
Posted by: Guest on October-24-2021

Code answers related to "how to delete all files in a folder python"

Python Answers by Framework

Browse Popular Code Answers by Language