Answers for "read text files from folder python"

-2

python read all text files in directory

import os
from re import search

arr = os.listdir()
strtxt = ".txt"
for txtfile in arr:
    if txtfile.__contains__(strtxt):
        fileObject = open(txtfile, "r")
        data = fileObject.read()
        print(data)
Posted by: Guest on December-22-2020
2

open file in python directory

path = 'C:\Users\Username\Path\To\File'
file=open(path, "r")
Posted by: Guest on May-13-2020
0

python glob how to read all txt files in folder

import glob
glob.glob('*.txt')
Posted by: Guest on December-04-2020

Code answers related to "read text files from folder python"

Python Answers by Framework

Browse Popular Code Answers by Language