We encountered a similar issue, but for gzip files. If you can convert your files to gzip instead of ZIP, it is as easy as the following (in PySpark)df = spark.read.option("header", "true").csv(PATH + "/*.csv.gz")As best as I can tell, this is not p...