Forum Discussion
sjpark
2 years agoFrequent Visitor
Read multiple files in Fabric Notebook
Hi, i'm trying to display data from Fabric Lakehouse's file system using notebook. I suceeded load csv file to Lakehouse's file system from Lakehouse's Table with using notebook. And now, I t...
- Anonymous2 years ago
Hi sjpark
Thanks for using Fabric Community.
You can use the below code:
df = spark.read.format("csv").option("header","true").load("Files/sjpark_test_result_job")
display(df)
I have created a repro for you.Hope this helps. Please let me know if you have any other questions.
Anonymous
2 years agoNot applicable
Hi sjpark
Thanks for using Fabric Community.
You can use the below code:
df = spark.read.format("csv").option("header","true").load("Files/sjpark_test_result_job")
display(df)
I have created a repro for you.
Hope this helps. Please let me know if you have any other questions.