Answers for "python remove contents in a folder"

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

Code answers related to "python remove contents in a folder"

Python Answers by Framework

Browse Popular Code Answers by Language