CSV Module File Location

0
Sorry for posting a bunch of questions here in the forum.  I have a lot of questions since I am still pretty new. I got the CSV module by Mendix working however I now need to know the location so I can pass it to a microflow in the Amazon S3 Connector module. Does anyone know where that module exports the csv file? I found the file associated with the _UUID_ and it has the contents minus the headers/column names but not a complete file. Anyone know where that is located? 
asked
1 answers
1

Mendix stores files in the filesystem. The db object only has a reference to the file. the files are in the ./data/files folder of your deployment directory. But you don’t need the filesystem file to use it in a microflow. You should use this DB object and load the file if needed.

answered