Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get list of all files in Google Photos

My ultimate goal is to get a list with all the files (photos, videos) in my Google Photos account preferably with their path. enter image description here

If I have to use some API I would rather use a .NET based one. Can you provide some directions in this matter?

I've tried the Gdata API, via the PicasaService, but providing my email/password as credentials did not work and I always get 404 response.

like image 949
checho Avatar asked Apr 26 '16 17:04

checho


People also ask

How can I see all my Google Photos at once?

On your Android phone or tablet, open Google Photos . At the bottom, tap Library Find the folder under Photos on device. If available, open your device folders to find your missing item. If you want your device folder items to appear in your Photos tab, you can back them up automatically.

Can I mass download Google Photos?

Under the 'albums' tab, select 'view all albums' to see your entire collection. Click an individual album and, once it's loaded, hit those three dots in the top right and select 'download all'. This will compress all of the images and videos contained in the album into a single zip file for you to download.


1 Answers

If you want to list all your photos and check them against your backups you could use my python project https://pypi.org/project/gphotos-sync/ which uses the new(ish) Google Photos API.

This will:-

  • index all of your media and albums into a SQL database
  • download a local backup (if required)
  • make a comparison of your new local backup against previous backups
  • give you a list of the files missing from your library
  • give you a list of files missing from your previous backups
  • give you a list of all the duplicates in your backup folders

Note that the comparison works on metadata in the files themselves and the folder structure and filenames need not match for it to work.

like image 102
Giles Knap Avatar answered Oct 17 '22 03:10

Giles Knap