Answers for "how to get all files from a folderin python"

8

python read a directory to get all files in sub folders

import os

path ="C:/workspace/python"
#we shall store all the file names in this list
filelist = []

for root, dirs, files in os.walk(path):
	for file in files:
        #append the file name to the list
		filelist.append(os.path.join(root,file))

#print all the file names
for name in filelist:
    print(name)
Posted by: Guest on November-19-2020
2

python import all files in directory

# Basic syntax:
import glob # Package for Unix-style pathname pattern expansion
import os   # Python operating system interface

directory = '/path/to/directory/with/files/'
# Obtain list of filenames that end in .txt in the directory
all_files = glob.glob(os.path.join(directory, "*.txt"))
# Where os.path.join creates the os-specific path to each file

# Import data however you like. To append data in a single pandas 
# dataframe and a single list, you can do:
your_list = [ ]
for filename in all_files:
    dataframe = pd.read_csv(filename, index_col=None, header=0, sep="\t")
    your_list.append(dataframe)
Posted by: Guest on May-12-2021

Code answers related to "how to get all files from a folderin python"

Python Answers by Framework

Browse Popular Code Answers by Language