get all .txt files in current dir python code example
Example 1: 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)
Example 2: python get all file names in a dir
from os import listdir
from os.path import isfile, join
onlyfiles = [f for f in listdir(mypath) if isfile(join(mypath, f))]