I have been trying to search a folder within databricks using a wildcard for csv's
The code i am using is
files = dbutils.fs.ls ("/tmp/airlines/alcsv/*.csv")
for file in files:
print(file)
then i get the following error
java.io.FileNotFoundException: /tmp/airlines/alcsv/*.csv
Could someone help me out please