I want implement an app backup/restore function using Json files, like demonstrated by @muneerhere.
But I don’t want the user to use the e-email copy & paste strategy, that will expose the structure of my database, besides the complexity of the process for regular users. So the idea is to SAVE a local backup file, and when need restore, LOAD in app the saved file locally.
To save I think the idea in this post can help. But how about the restore?
It’s possible to use the filepicker to get a Json file content and apply it in a variable? This way will be easy to restore.
Maybe not with filepicker but probably this approach would be helpful:
Obviously instead “set Label1’s Text to response” you can parse content of picked csv file (response) to get exact variable from it.
Hope it will be helpful to achieve what you need.
Taking advantage of your answer, I have another need that is to delete local files on the device (of the images that I uploaded via mediaDB to Cloudinary that Thunkable keeps locally but never delete from the device).
Any idea in how to delete local files via Thunkable?