Is there any way to get the path for the file which has been uploaded ?

0
I am uploading a file is there a way to get the path of this file where it is stored.   
asked
1 answers
1

Hi,

In Mendix, there is no direct way to get the physical path of a file uploaded to the platform. Mendix handles file storage and retrieval transparently, abstracting the underlying storage details. Instead of accessing the physical file path, you interact with files using Mendix file documents and entities, and you can retrieve the file content through the Mendix API. The platform manages the actual storage location and ensures secure access to files via the model.

 

you can try

http://localhost:8080/file?guid=5629492544212933 {your ​​​​​​​guid}

 

answered