Python delete a file

Your video will begin in 10
74 Views
Published
Python delete file tutorial example explained

#python #delete #file

import os
import shutil

path = "test.txt"

try:
os.remove(path) #delete a file
#os.rmdir(path) #delete an empty directory
#shutil.rmtree(path)#delete a directory containing files
except FileNotFoundError:
print("That file was not found")
except PermissionError:
print("You do not have permission to delete that")
except OSError:
print("You cannot delete that using that function")
else:
print(path+" was deleted")

Bro Code merch store: https://teespring.com/stores/bro-code-5
Category
Bro Code
Tags
python, python delete file, python delete files
Be the first to comment