Answers for "read all files in a directory python 3.7"

-3

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
0

Get all file in folder Python

path = "C:code"

import glob

txtfiles = []
for file in glob.glob(path + "\*.m4a"):
    txtfiles.append(file)

for item in txtfiles:
    print(item)
Posted by: Guest on November-12-2021

Code answers related to "read all files in a directory python 3.7"

Python Answers by Framework

Browse Popular Code Answers by Language