Question 30) Write a program in Python to check if a directory exists or not.
Solution:
'''
Python Program 30:
Check if directory exists or not
Author: Code2care.org
Version: v1.0
Date: 06-07-2023
'''
import os
directory_path = "/Users/c2ctech/Desktop"
is_directory_exists = os.path.exists(directory_path)
if is_directory_exists == True:
print(f"The Directory Exists at path : {directory_path} ")
else:
print(f"The Directory Does Not Exists at path : {directory_path} ")
Output:
The Directory Does Not Exists at path : /Users/c2ctech/Desktop

-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Python,
- How to convert int to ASCII in Python
- How to make use of SQLite Module in Python?
- Split a String into Sub-string and Parse in Python
- Python: Pandas Rename Columns with List Example
- How to run Python file from Mac Terminal
- How to Exit a Loop in Python Code
- Python: How to Plot a Histogram using Matplotlib and data as list
- MD5 Hashing in Python
- Jupyter: Safari Cant Connect to the Server localhost:8888/tree
- Fix: AttributeError: str object has no attribute decode. Did you mean: encode?[Python]
- How to Read a binary File with Python
- How to add two float numbers in Python
- Python: How to install YAML Package
- Python: How to Save Image from URL
- What is Markdown in Jupyter Notebook with Examples
- How to change the Python Default version
- 33: Python Program to send an email vid GMail
- How to comment code in Python
- How to Fix AttributeError in Python
- Fix: error: Jupyter command `jupyter-nbconvert` not found [VSCode]
- How to comment out a block of code in Python
- List of All 35 Reserved Keywords in Python Programming Language 3.11
- Import Other Python Files Examples
- Python: How to add Progress Bar in Console with Examples
- 3 Ways to convert bytes to String in Python
More Posts:
- Reopen previously closed tab in Google Chrome - Chrome
- Java 8 java.util.Function and BiFunction Examples - Java
- Java SE JDBC with Prepared Statement Parameterized Select Example - Java
- How to Run JavaScript on Mac Terminal - JavaScript
- How to reset Eclipse IDE Code Font - Eclipse
- Fix error The tool was unable to install the Web Server (IIS) Role during SharePoint 2019 Setup - SharePoint
- How to Exit a Loop in Python Code - Python
- Run IntelliJ Java main method without Gradle build - Gradle