Duration 5:3

Python delete a file ️

23 511 watched
0
774
Published 21 Dec 2020

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

Show more

Comments - 41