@sharma_kamal
Please disable the formatCheck in notebook and check if you could read the data
The configuration command %sql SET spark.databricks.delta.formatCheck.enabled=false will disable the format check for Delta tables in Databricks.
Databricks delta format check is a feature that validates whether the format of the source files is one of CSV, JSON, AVRO, ORC, PARQUET, TEXT, or BINARYFILE and if that meets that condition it will raise exception that you are facing.
This format check is because to ensure only delta format must be loaded for any operation.
If the format check is disabled, Databricks will not perform this validation and bypass this format check.