This python program is to delete the directory.
CODE:
import os folder_path = 'images' if os.path.exists(folder_path): try: os.rmdir(folder_path) print(f"Folder '{folder_path}' and its contents have been deleted.") except Exception as e: print(f"An error occurred while deleting the folder: {e}") else:print(f"Folder '{folder_path}' does not exist.")
I got this following error while deleting the folder in python. [WinError 145] The directory is not empty: 'images'
SOLUTION:
If you want to delete a non-empty directory, we need to use shutil.rmtree()
CODE:
import os import shutil folder_path = 'images' if os.path.exists(folder_path): try: shutil.rmtree(folder_path) print(f"Folder '{folder_path}' and its contents have been deleted.") except Exception as e: print(f"An error occurred while deleting the folder: {e}") else: print(f"Folder '{folder_path}' does not exist.")
VIDEO GUIDE::
Post your comments / questions
Recent Article
- Fix-Gradient effect turning to gray in after effects
- How to blur an image in python?
- ModuleNotFoundError: No module named 'whois' in Python GoviralHost Without Terminal
- How to Convert Image to Pencil Sketch in Python?
- AttributeError: module 'urllib' has no attribute 'request' - Python
- How to Extract audio from video files using python?
- PermissionError: [Errno 13] Permission denied: 'shampoo_sales.csv' - Python
- How to generate barcode using python?
Related Article