get a list of items in a folder python code example
Example 1: get list of folders in directory python
import os
my_list = os.listdir('My_directory')
Example 2: get list file in folder python
lstJson = [f for f in os.listdir(str(self.pathJson)) if f.endswith('.json')]
return lstJson