Answers for "delete all file from a list by 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

python delete all data from file

file = open("sample.txt","r+")
file.truncate(0)
file.close()
Posted by: Guest on June-03-2020

Code answers related to "delete all file from a list by python"

Python Answers by Framework

Browse Popular Code Answers by Language