Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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))
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #delete #files #directory #python
ADD COMMENT
Topic
Name
5+4 =