I am currently listing files in Azure Datalake Store gen1
successfully with the following command:
dbutils.fs.ls('mnt/dbfolder1/projects/clients')
The structure of this folder is
- client_comp_automotive_1.json [File]
- client_comp_automotive_2.json [File]
- client_comp_automotive_3.json [File]
- client_comp_automotive_4.json [File]
- PROCESSED [Folder]
I want to loop through those (.json
) files in this folder and process them one by one, so that I can act on error or something else and move successfully processed file to a subfolder.
How can I do this in python
. I have tried
folder = dbutils.fs.ls('mnt/dbfolder1/projects/clients')
files = [f for f in os.listdir(folder) if os.path.isfile(f)]
But this does not work. os
is unknown. How can I do this within Databricks
?