Saturday, November 15, 2025
HomeLanguagesPython | os.path.isfile() method

Python | os.path.isfile() method

OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.path module is sub module of OS module in Python used for common path name manipulation.

os.path.isfile() method in Python is used to check whether the specified path is an existing regular file or not.

Syntax: os.path.isfile(path)

Parameter:
path: A path-like object representing a file system path. A path-like object is either a string or bytes object representing a path.

Return Type: This method returns a Boolean value of class bool. This method returns True if specified path is an existing regular file, otherwise returns False.

Code #1: Use of os.path.isfile() method




# Python program to explain os.path.isfile() method 
    
# importing os module 
import os
  
# Path
path = '/home/User/Desktop/file.txt'
  
# Check whether the 
# specified path is 
# an existing file
isFile = os.path.isfile(path)
print(isFile)
  
  
# Path
path = '/home/User/Desktop/'
  
# Check whether the 
# specified path is 
# an existing file
isFile = os.path.isfile(path)
print(isFile)


Output:

True
False

Reference: https://docs.python.org/3/library/os.path.html

RELATED ARTICLES

Most Popular

Dominic
32399 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6765 POSTS0 COMMENTS
Nicole Veronica
11917 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11984 POSTS0 COMMENTS
Shaida Kate Naidoo
6890 POSTS0 COMMENTS
Ted Musemwa
7143 POSTS0 COMMENTS
Thapelo Manthata
6838 POSTS0 COMMENTS
Umr Jansen
6840 POSTS0 COMMENTS