Reply To: how to save uploaded by user file in database
Home › Forums › Bot Building & Training › how to save uploaded by user file in database › Reply To: how to save uploaded by user file in database
May 29, 2020 at 11:30 am
#5017
Participant
Hi Bhagyashree,
There are a couple of ways to achieve this.
* All uploaded files are by default stored in azure cloud
and you’ll get the uploaded file’s url.
* If you want to save the file in a different database/store, you can use the file’s url to fetch it and upload it to your database using validator functions
on that step
.
Code snippet for this
app.getFile(url)
Let me know if anymore help is needed.