Deployment\Data\Files - How to tell which file is which

0
In the project folder\deployment\data\files\ there are lots of 2 digit folders that then have 2 digit subfolders. Inside the subfolders are files that appear to be named with a GUID and no extension.  How can we tell which file is which?  Is there a table in Mendix that we can query or some other way to determine the files and their real names?
asked
1 answers
3

In the DB the table "system$filedocument” is your guide.

It has a column __uuid__ which relates to the files and the column “name” will tell you the filename.

answered