Friday, October 3, 2025
HomeLanguagesHow to read multiple text files from folder in Python?

How to read multiple text files from folder in Python?

Prerequisite:

Python is a strong language which is extremely capable even when it comes to file handling. In this article, we will learn how to read multiple text files from a folder using python.

Approach:

  • Import modules
  • Add path of the folder
  • Change directory
  • Get the list of a file from a folder
  • Iterate through the file list and check whether the extension of the file is in .txt format or not.
  • If text-file exist, read the file using File Handling

Functions used:

  • os.chdir() method in Python used to change the current working directory to specified path. It takes only a single argument as new directory path.

Syntax: os.chdir(path)

Parameters:

  • path: A complete path of directory to be changed to new directory path.

Returns: Doesn’t return any value

  • os.listdir() method in python is used to get the list of all files and directories in the specified directory. If we don’t specify any directory, then list of files and directories in the current working directory will be returned.

Syntax: os.listdir(path)

Parameters:

  • path (optional) : path of the directory

Return Type: This method returns the list of all files and directories in the specified path. The return type of this method is list.

Below is the Implementation:

Program:

Python3




# Import Module
import os
  
# Folder Path
path = "Enter Folder Path"
  
# Change the directory
os.chdir(path)
  
# Read text File
  
  
def read_text_file(file_path):
    with open(file_path, 'r') as f:
        print(f.read())
  
  
# iterate through all file
for file in os.listdir():
    # Check whether file is in text format or not
    if file.endswith(".txt"):
        file_path = f"{path}\{file}"
  
        # call read text file function
        read_text_file(file_path)


Output:

RELATED ARTICLES

Most Popular

Dominic
32331 POSTS0 COMMENTS
Milvus
85 POSTS0 COMMENTS
Nango Kala
6703 POSTS0 COMMENTS
Nicole Veronica
11868 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11929 POSTS0 COMMENTS
Shaida Kate Naidoo
6818 POSTS0 COMMENTS
Ted Musemwa
7080 POSTS0 COMMENTS
Thapelo Manthata
6775 POSTS0 COMMENTS
Umr Jansen
6776 POSTS0 COMMENTS