Skip to content

Instantly share code, notes, and snippets.

@acarabott
Created March 17, 2023 06:44
Show Gist options
  • Save acarabott/fd131ba9bfc91eab7f7a085baf13f52f to your computer and use it in GitHub Desktop.
Save acarabott/fd131ba9bfc91eab7f7a085baf13f52f to your computer and use it in GitHub Desktop.
Applescript to get all files in Photos.app greater than a particular size
set threshold_in_megabytes to 500
set threshold_in_bytes to threshold_in_megabytes * 1000 * 1000
tell application "Photos" to return filename of media items whose size is greater than or equal to threshold_in_bytes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment