---
description: Master the knack of verifying file existence in Python with our clear, concise guide on Python Check if File Exists. Various methods are explained for your ease.
title: Python Check if File Exists: How to Check If a Directory Exists?
---

[Skip to content](#main) 

## Python exists()

**Python exists()** method is used to check whether specific file or directory exists or not. It is also used to check if a path refers to any open file descriptor or not. It returns boolean value true if file exists and returns false otherwise. It is used with os module and os.path sub module as os.path.exists(path).

In this Python file exists tutorial, we will learn how to determine whether a file (or directory) exists using Python. To check if file exists Python, we use Built-in library Python check if file exists functions.

There are different ways to verify a file or Python check if directory exists, using functions as listed below.

## How to Check If a File Exists in Python using os.path.exists()

Using path.exists you can quickly check that a file or directory exists. Here are the steps for Python check file exists or not:

**Steps 1) Import the os.path module**

Before you run the code, it is important that you import the os.path module.

import os.path
from os import path

**Steps 2) Use path.exists() funtion**

Now, use the path.exists() function to Python check if a file exists.

path.exists("guru99.txt")

**Steps 3) Run the code given below**

Here is the complete code

import os.path
from os import path

def main():

   print ("File exists:"+str(path.exists('guru99.txt')))
   print ("File exists:" + str(path.exists('career.guru99.txt')))
   print ("directory exists:" + str(path.exists('myDirectory')))

if __name__== "__main__":
   main()

In our case only file guru99.txt is created in the working directory

**Output:**

File exists: True
File exists: False
directory exists: False

### RELATED ARTICLES

* [ Python Variables: How to Define/Declare String Variable Types ](https://www.guru99.com/variables-in-python.html "Python Variables: How to Define/Declare String Variable Types")
* [ Python CALENDAR Tutorial with Example ](https://www.guru99.com/calendar-in-python.html "Python CALENDAR Tutorial with Example")
* [ 11 Best Python Books for Beginners (2026 Update) ](https://www.guru99.com/best-python-books.html "11 Best Python Books for Beginners (2026 Update)")
* [ Python 2 Vs. Python 3: Key Difference Between 2.x & 3.x ](https://www.guru99.com/python-2-vs-python-3.html "Python 2 Vs. Python 3: Key Difference Between 2.x & 3.x")

## Python isfile()

The **Python isfile()** method is used to find whether a given path is an existing regular file or not. It returns a boolean value true if the specific path is an existing file or else it returns false. It can be used by the syntax : os.path.isfile(path).

## os.path.isfile()

We can use the isfile command to check whether a given input is a file or not.

import os.path
from os import path

def main():

	print ("Is it File?" + str(path.isfile('guru99.txt')))
	print ("Is it File?" + str(path.isfile('myDirectory')))
if __name__== "__main__":
	main()

**Output:**

Is it File? True
Is it File? False

## os.path.isdir()

If we want to confirm that a given path points to a directory, we can use the os.path.dir() function

import os.path
from os import path

def main():

   print ("Is it Directory?" + str(path.isdir('guru99.txt')))
   print ("Is it Directory?" + str(path.isdir('myDirectory')))

if __name__== "__main__":
   main()

**Output:**

Is it Directory? False
Is it Directory? True

## pathlibPath.exists() For Python 3.4

[Python](https://www.guru99.com/python-tutorials.html) 3.4 and above versions have pathlib Module for handling with file system path. It uses object-oriented approach to Python check if folder exists or not.

import pathlib
file = pathlib.Path("guru99.txt")
if file.exists ():
    print ("File exist")
else:
    print ("File not exist")

**Output:**

File exist

**Complete Code**

Here is the complete code

import os
from os import path

def main():
    # Print the name of the OS
    print(os.name)
#Check for item existence and type
print("Item exists:" + str(path.exists("guru99.txt")))
print("Item is a file: " + str(path.isfile("guru99.txt")))
print("Item is a directory: " + str(path.isdir("guru99.txt")))

if __name__ == "__main__":
    main()

**Output:**

Item exists: True
Item is a file: True
Item is a directory: False

## How to check If File Exists

* `os.path.exists()` – Returns `True` if path or directory does exists.
* `os.path.isfile()` – Returns `True` if path is File.
* `os.path.isdir()` – Returns `True` if path is Directory.
* `pathlib.Path.exists()` – Returns `True` if path or directory does exists. (In Python 3.4 and above versions)

**Also Check:-** [Python Tutorial for Beginners: Learn Programming Basics \[PDF\]](https://www.guru99.com/python-tutorials.html)

#### Summarize this post with:

ChatGPT Perplexity Grok Google AI 

**Stay Updated on AI** **Get Weekly AI Skills, Trends, Actionable Advice.** 

##### Sign up for the newsletter

Subscribe for Free 

 You have successfully subscribed.  
Please check your inbox.

![AI-Newsletter]() Chosen by over **350,000+** professionals 

[Scroll to top ](#wrapper)Scroll to top 

× 

Toggle Menu Close 

Search for: 

Search 

```json
{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://www.guru99.com/#organization","name":"Guru99","sameAs":["https://www.facebook.com/Guru99Official","https://twitter.com/guru99com"],"logo":{"@type":"ImageObject","@id":"https://www.guru99.com/#logo","url":"https://www.guru99.com/images/guru99-logo-v1-150x59.png","contentUrl":"https://www.guru99.com/images/guru99-logo-v1-150x59.png","caption":"Guru99","inLanguage":"en-US"}},{"@type":"WebSite","@id":"https://www.guru99.com/#website","url":"https://www.guru99.com","name":"Guru99","publisher":{"@id":"https://www.guru99.com/#organization"},"inLanguage":"en-US"},{"@type":"BreadcrumbList","@id":"https://www.guru99.com/python-check-if-file-exists.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":"1","item":{"@id":"https://www.guru99.com","name":"Home"}},{"@type":"ListItem","position":"2","item":{"@id":"https://www.guru99.com/python","name":"Python"}},{"@type":"ListItem","position":"3","item":{"@id":"https://www.guru99.com/python-check-if-file-exists.html","name":"Python Check if File Exists: How to Check If a Directory Exists?"}}]},{"@type":"WebPage","@id":"https://www.guru99.com/python-check-if-file-exists.html#webpage","url":"https://www.guru99.com/python-check-if-file-exists.html","name":"Python Check if File Exists: How to Check If a Directory Exists?","dateModified":"2024-08-12T16:11:43+05:30","isPartOf":{"@id":"https://www.guru99.com/#website"},"inLanguage":"en-US","breadcrumb":{"@id":"https://www.guru99.com/python-check-if-file-exists.html#breadcrumb"}},{"@type":"Person","@id":"https://www.guru99.com/author/anna","name":"Anna Blake","description":"I'm Anna Blake, specializing in Python tutorials, offering clear and concise lessons to help you master Python programming efficiently.","url":"https://www.guru99.com/author/anna","image":{"@type":"ImageObject","@id":"https://www.guru99.com/images/anna-blake-author.png","url":"https://www.guru99.com/images/anna-blake-author.png","caption":"Anna Blake","inLanguage":"en-US"},"worksFor":{"@id":"https://www.guru99.com/#organization"}},{"headline":"Python Check if File Exists: How to Check If a Directory Exists?","description":"Master the knack of verifying file existence in Python with our clear, concise guide on Python Check if File Exists. Various methods are explained for your ease.","keywords":"python","@type":"Article","author":{"@id":"https://www.guru99.com/author/anna","name":"Anna Blake"},"dateModified":"2024-08-12T16:11:43+05:30","name":"Python Check if File Exists: How to Check If a Directory Exists?","articleSection":"Python","subjectOf":[{"@type":"HowTo","name":"How to Check If a File Exists in Python","description":"Here is a step by step process on how to check if a file exists in python","step":[{"@type":"HowToStep","name":"Step 1) Import the os.path module","text":"Before you run the code, it is important that you import the os.path module.","url":"https://www.guru99.com/python-check-if-file-exists.html#step1"},{"@type":"HowToStep","name":"Step 2) Use path.exists() funtion","text":"Now, use the path.exists() function to Python check if a file exists.","url":"https://www.guru99.com/python-check-if-file-exists.html#step2"},{"@type":"HowToStep","name":"Step 3) Run the code given below","text":"Here is the complete code, check output.","url":"https://www.guru99.com/python-check-if-file-exists.html#step3"}]}],"@id":"https://www.guru99.com/python-check-if-file-exists.html#schema-150128","isPartOf":{"@id":"https://www.guru99.com/python-check-if-file-exists.html#webpage"},"publisher":{"@id":"https://www.guru99.com/#organization"},"inLanguage":"en-US","mainEntityOfPage":{"@id":"https://www.guru99.com/python-check-if-file-exists.html#webpage"}}]}
```
