Manage files uploaded via mendix

0
Hello,   Is there a method to see all the files stored in Mendix files system - which we had uploaded via document upload feature in Mendix? Probably with features to download or delete files.   Thanks Iqbal
asked
2 answers
1

The files should all derive from System.FileDocument, so you could do a retrieve on this entity to get all the files in your application. If you know your uploads are all of a certain specialisation entity, then you could just retrieve that instead. You can then show the results on a page in your application, and add download and delete options as required.

 

Good luck!

answered
0

Hi Iqbal,

Just retrieve your entity on a page in listview which is generalised with System.FileDocument.

 

Add one delete button for deleting the object & add another button(download) -> call a microflow on this download-> inside this microflow just take download activity & download your file.

 

Hope you like the answer

 

answered