Hi @Scott_Haaland
Thank you for your response and explanation. I will looking foward to testing this new feature in due course.
I assume google Drive API could be involved somewhere in this new development. In that case, the properties which will be available under FILES object could be readable?
āimageMediaMetadataā: {
āwidthā: integer,
āheightā: integer,
ārotationā: integer,
ālocationā: {
ālatitudeā: double,
ālongitudeā: double,
āaltitudeā: double
},
ātimeā: string,
ācameraMakeā: string,
ācameraModelā: string,
āexposureTimeā: float,
āapertureā: float,
āflashUsedā: boolean,
āfocalLengthā: float,
āisoSpeedā: integer,
āmeteringModeā: string,
āsensorā: string,
āexposureModeā: string,
ācolorSpaceā: string,
āwhiteBalanceā: string,
āexposureBiasā: float,
āmaxApertureValueā: float,
āsubjectDistanceā: integer,
ālensā: string
},
āvideoMediaMetadataā: {
āwidthā: integer,
āheightā: integer,
ādurationMillisā: long
},
We deal with bunch of āimageā files under Appsheet app. So access image file meta data is super useful. However, there is downside⦠Currently, Appsheet is not retaining the meta data for image file once we upload image through the appsheet.
Along with this new feature development, I really wish your team to review the current limination to drop meta data of image file, expecially the datatime, lat/long and other valuable meta data could be retained when we up the image.
Arther is on a case to introduce new video upload feature as well. Once this happens, the access to videometadata could be also useful, as we can capture the duration and other meta data for the file and display withing appsheet app once uploaded.
[Get the Google Drive File IDs automatically and manupulate for bits and pieces](https://community.appsheet.com/t/get-the-google-drive-file-ids-automatically-and-manupulate-for-bits-and-pieces/34716) Tips & Tricks ?
Borrowing the complete code (Google App Script) from the web, like stackoverflow, such as The function below is going to list up the file names and file Id as well as file size for the target folder. function list_all_files_inside_one_folder_without_subfolders(){ var sh = SpreadsheetApp.getActiveSheet(); var folder = DriveApp.getFolderById(āChangeHereToYourFileFolderIdā); var list = ; list.push([āNameā,āIDā,āSizeā]); var files = folder.getFiles(); while (files.hasNext()){ file = filā¦
This is a trick I m currently using to capture Google Drive file IDs, this process is painful, as I dont want to CODE as much as possible. Once we could capture Google Drive file ID automatically or rather simply than pushing own GAS, then it will be another game changer. We can create the download link for the file using IDs and can do more by manipulating the ids.
Thank you and really looking forward to having it.
Koichi
ā
Maybe it is a good idea to get the path & folder ID for the files as well.
@LeventK