get list file endswith python code example
Example: get list file endswith python
lstJson = [f for f in os.listdir(str(self.pathJson)) if f.endswith('.json')]
return lstJson
lstJson = [f for f in os.listdir(str(self.pathJson)) if f.endswith('.json')]
return lstJson