BS_THE_ANALYST
Databricks Partner

@pop_smoke a typical solution would be to store the .csvs in a Volume within your Unity Catalog in the Free Edition

BS_THE_ANALYST_0-1757161552297.png

Here's an example:

BS_THE_ANALYST_1-1757161857738.png

Syntax used for writing
One Example:

df.write.format("csv").mode("overwrite").save("/Volumes/workspace/default/volume_files/media_customer_reviews")

Another Example:

df.write.csv("/Volumes/workspace/default/volume_files/media_customer_reviews", header=True, mode="overwrite")

Official docs for syntax: https://spark.apache.org/docs/latest/api/python/reference/pyspark.sql/api/pyspark.sql.DataFrameWrite... 

All the best,
BS