-- recent / grabs oldest photos #1218
Replies: 4 comments 4 replies
-
|
What command parameters are you using? What symptoms suggest that |
Beta Was this translation helpful? Give feedback.
-
|
Hi Andrey! Thanks for your answer! When I run my script, then icloudp showed in the log, it checked the first 21 first days of my iCloud library: 2025-08-17 01:28:24 DEBUG Downloading /home/xyz/Bilder/iPhone/2017/11/04/IMG_0006_HEVC.MOV... Please find below my script: #!/bin/bash Pfade & VariablenVENV_PATH="/home/xyz/icloudpd/venv/bin" Virtuelle Umgebung aktivierensource "$VENV_PATH/activate" Startzeit ins Log schreibenecho "===== $(date '+%Y-%m-%d %H:%M:%S') Start icloudpd =====" | tee -a "$LOG_FILE" icloudpd direkt ins Zielverzeichnis ausführen"$VENV_PATH/icloudpd" Dateien umsortieren: Live-Photo MOVs in "Live"find "$DOWNLOAD_DIR" -type f -name "*_HEVC.MOV" | while read FILE; do REL_PATH=$(realpath --relative-to="$DOWNLOAD_DIR" "$FILE") DAY_DIR="$DOWNLOAD_DIR/$(dirname "$REL_PATH")" mkdir -p "$DAY_DIR/Live" mv "$FILE" "$DAY_DIR/Live/" done Endzeit ins Log schreibenecho "===== $(date '+%Y-%m-%d %H:%M:%S') Ende icloudpd =====" | tee -a "$LOG_FILE" Just FYI: The initial download worked flawless (without the recent parameter). Thanks for your help! |
Beta Was this translation helpful? Give feedback.
-
|
what version of icloudpd are you using? What is your goal in limiting incremental sync? there are pros and cons with either incremental or full sync, so it worth to have your goals clear before evaluating approach.
|
Beta Was this translation helpful? Give feedback.
-
|
Many thanks for your reply Andrey. I have found the issue, which I created myself: find "$DOWNLOAD_DIR" -type f -name "*_HEVC.MOV" | while read FILE; do REL_PATH=$(realpath --relative-to="$DOWNLOAD_DIR" "$FILE") DAY_DIR="$DOWNLOAD_DIR/$(dirname "$REL_PATH")" mkdir -p "$DAY_DIR/Live" mv "$FILE" "$DAY_DIR/Live/" done For this reason, icloudpd downloaded the live-MOVs again with the next sync. I was, wrongly, under the impression icloudpd did not recognize the previous downloads. In the meantime I have opened a request (this would be cool :)): Many thanks for your support! I will close this discussion. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all,
I started using icloudp in Ubuntu and downloaded my complete iCloud photo library locally (35000 photos).
My aim is, to have icloudp check upon startup, if new photos are in my iCloud library and download these.
Since I work at least every 3 weeks with my desktop, icloudp only needs to check the last 21 days.
I have configured now icloudp accordingly:
--recent 21 \
But now icloudp checks the oldest photos in my library and then finish the job. These pictures are from november 2017.
Do I use this command wrongly?
Thanks for your support!
Beta Was this translation helpful? Give feedback.
All reactions