Answers for "get a list of all the files in a directory python"

18

python list files in current directory

import os

files = os.listdir('.')
print(files)
for file in files:
  # do something
Posted by: Guest on November-04-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 "get a list of all the files in a directory python"

Python Answers by Framework

Browse Popular Code Answers by Language