Answers for "python read data from all files in folder"

3

python open each file in directory

import os
for filename in os.listdir(os.getcwd()):
   with open(os.path.join(os.cwd(), filename), 'r') as f:
Posted by: Guest on July-03-2020
12

get files in directory python

import os
files_and_directories = os.listdir("path/to/directory")
Posted by: Guest on June-12-2020

Code answers related to "python read data from all files in folder"

Python Answers by Framework

Browse Popular Code Answers by Language