Created
March 17, 2023 06:44
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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