How to save file in specific path ?

0
I am tring to upload file and save it to specific local drive , I am uploading it using file document but can not save it in specific local drive
asked
1 answers
1

Standard way for Mendix is to save the files in a folder on the server (on a local system it is in your deployment\database\files folder). The reference to the file is saved in the database. Opening a file directly from the file system is hard, because from the name (random string without extension) you cannot know what type of file it is.

You can take a look at the microsoft graph connector on the marketplace. This allows you to store files on a dedicated SharePoint drive where you can allow/restrict access as well.

answered