Last active
December 20, 2015 02:19
-
-
Save maxkandler/6055702 to your computer and use it in GitHub Desktop.
Syncing photostream to Dropbox.
Find a full explanation over at my blog: http://justcurious.is/2013/sync-ios-photostream-to-dropbox/
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>is.justcurious.photostreamsync</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/Applications/utils/photostream</string> | |
</array> | |
<key>StartInterval</key> | |
<integer>300</integer> | |
</dict> | |
</plist> |
This file contains 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
cd ~/Library/Application\ Support/iLifeAssetManagement/assets/sub/ | |
find . -name 'IMG_*' -exec cp -n -p {} /Volumes/HDD/max/Dropbox/photostream \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you'd like to remove the dependency on the local Dropbox client you could also email the files to IFTTT, which then has a recipe to push the files you receive directly into a dropbox folder. That's how I plan on using this to get photos from my photo stream into someone else's (very large) Dropbox account.