python how to dlt a certain file type code example
Example 1: python delete file with extension
import os
dir_name = "/Users/ben/downloads/"
test = os.listdir(dir_name)
for item in test:
if item.endswith(".zip"):
os.remove(os.path.join(dir_name, item))
Example 2: how to delete file in python
import os
os.remove("ChangedFile.csv")
print("File Removed!")