File upload settings on the server for apps distributed with mendix licenses

0
I have a question about uploading files. 1. When uploading a file from an app being distributed, where is it stored? 2. In a situation like number 1, can I change the file storage path? 3. Can I create and upload a file storage path for each account logged into the app?
asked
1 answers
3

Hi bosung,

            Development Environment: Files are stored locally on your development machine.

  • Cloud Deployment (e.g., Mendix Cloud): Files are stored in the Mendix file storage service in the cloud.
  • On-Premises Deployment: Files are stored on the server's file system or any connected storage solution.

Check microflow logic for seperate account

            

  • During file upload, check the logged-in user's account.
  • Associate the uploaded file with the user using the Account → UserFile relationship.
  • Optionally, store the file in a user-specific directory if external storage is used.
answered