Can I create app to save photos in nominated DropBox folder?

A need to save photos in nominated shared Dropbox folders. To accomplish this, I thought I could create a Google sheet that contained a list of the Locations, and then create an AppSheet App that enabled my user to select a Location, take a photo and have the photo automatically save to the DropBox folder with the same name as the Location selected.

I know how to make the spreadsheet and app but donโ€™t know whether to save the spreadsheet in Google Drive or DropBox, nor do I know how to save the photos in the selected folder instead of the default folder. Can anyone point me in the right direction please?

0 13 1,572
13 REPLIES 13

@Rob_atYahoo
If you will be using Dropbox as the cloud storage, than your spreadsheet shall be on Dropbox as well.
For the location, you can use expressions to define the folder name that the images will be saved. To accomplish this, you can have a [FolderName] dropdown field for the user and in the image columnโ€™s FolderLocation property, you can create an expression like this:

CONCATENATE([FolderName],"/")

Pay attention that this will locate the root folder of your app (where the spreadsheet lies) and if such sub-folder does not exists, it will create that folder.

After a week of trying different options I finally tried leaving out the CONCATENATE function and just leaving [FolderName] in the image columnโ€™s FolderLocation property and it works. So the CONCATENATE with โ€œ/โ€ is unnecessary

If we are using SQL as a backend rather than Excel, what would your recommend for storing images as I understand that AppSheet does not support using BLOBโ€™s on Azure SQL.

Well it totally depends actually. Provided your Cloud SQL is on AWS than you have the chance to use Amazon S3 for the images. As AppSheet is now part of Google, I hope that soon they will be creating a connectivity for Google Cloud Storage as well for images. @praveenโ€™s insights will be more helpful I believe.

Thanks for that. I assume thereโ€™s no problem having a gsheet saved in Dropbox folder and it will work with multiple users if that becomes a requirement

Rob

Running into my first problem. How can I save a gsheet in DropBox. When I create it and try to save thereโ€™s no option to save in DropBox. If I save it in Drive and copy it to DroBox I canโ€™t seem to get it to open.

I know I could try to use an Excel spreadsheet but Iโ€™ve had no end of sync problems with Excel so Iโ€™d rather avoid it, if I can. Any help would be appreciated. Thanks

@Rob_atYahoo
You cannot save a Google Sheet in Dropbox, sorry. Actually you can - as a .gSheet file - but you cannot open it from Dropbox.

Thought it was me.

So I need to use an excel sheet. Do they sync ok on Dropbox or do they create sync issues like they do in OneDrive?

Chiming in @tony and @Peter

tony1
New Member

You can use Excel on Dropbox.

Sam11
New Member

Hey guys, I am currently using google forms to have people answer questions and submit photos that they need to take. How do I setup a way for my appsheet to give the option of taking a photo and then uploading it?

@Sam1 make sure you have a column in your data table with a header something like โ€˜Photosโ€™ - then once that tableโ€™s connect to your app, make sure the column type of that column is set to be โ€˜Imageโ€™. This app collects photos, you can see how itโ€™s setup here: https://www.appsheet.com/samples/This-is-an-app-for-a-house-inspector-to-capture-and-curate-photos-n...

I have created a basic app and it will save and sync photos and signatures but when I add the Concatenate code to the images Image file/folder path property, the App runs on Windows but when I go to sync it comes up with the error message โ€œUnable to add/edit/delete row in table โ€˜Imagesโ€™. โ†’ {โ€œerror_summaryโ€: โ€œpath/malformed_path/โ€, โ€œerrorโ€: {โ€.tag": โ€œpathโ€, โ€œreasonโ€: {".tag": โ€œmalformed_pathโ€}, โ€œupload_session_idโ€: โ€œAAAAAAAAFlFCCk-dX2_cAgโ€}}"

Is this telling me that I need to create the folder first - I thought it would create the folder itself? Or is there another problme with what I am doing?

Top Labels in this Space