can load/read file in databricks free edition(which is all new edition replacing community edition)

na_ra_7
New Contributor III

FL_DATAFRAME = spark.read.format("csv")\
                                                 .option("header", "false")\
                                                 .option("inferschema", "false")\
                                                 .option("mode", "FAILFAST")\
                                                 .load("file:/databricks/driver/2010_summary.csv")
FL_DATAFRAME.show(5)

ExecutionError: Public DBFS root is disabled. Access is denied on path: /FileStore


many of the people out there are having this error and we can't read file just because of this can you please suggest what to do for the same in databricks free edition and this info is not available anywhere i have tried gpt,youtube everything nothings works
if anyone can guide me how do i load and read csv step by step it would be really helpful