Answers for "python os remove directory with contents"

6

delete contents of directory python

import os
import glob

files = glob.glob('/YOUR/PATH/*')
for f in files:
    os.remove(f)
Posted by: Guest on November-20-2020

Code answers related to "python os remove directory with contents"

Python Answers by Framework

Browse Popular Code Answers by Language