Answers for "get all file names in folder python"

3

get list file in folder python

lstJson = [f for f in os.listdir(str(self.pathJson)) if f.endswith('.json')]
        return lstJson
Posted by: Guest on March-28-2021
0

python get list of files in directory

from os import listdir
file_list = listdir(folder_path)
Posted by: Guest on January-20-2021

Code answers related to "get all file names in folder python"

Python Answers by Framework

Browse Popular Code Answers by Language