Answers for "list all files under a directory python"

7

list files in directory python

import os
print(os.listdir('/path/to/folder/to/list'))
Posted by: Guest on April-22-2020
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

Code answers related to "list all files under a directory python"

Python Answers by Framework

Browse Popular Code Answers by Language