I am trying to get all the json files stored in a single container in a subfolder in blob storage. I have setup the environment in databricks and have the connection linked. Currently I am using this code
df = spark.read.json("wasbs://container_name@blob_storage_account.blob.core.windows.net/sub_folder/*.json")
but I am getting just the first file and not all the json files present in the subfolder even after including the wildcard /*.json.
I am trying to get all the files from the subfolder in a single dataframe and store as a table in sql database.
Can someone assist on what I am missing.

