Start 2025 on time and up to date! Seamlessly integrate your calendars into Dropbox with these simple steps! 📆

Forum Discussion

Ronni's avatar
Ronni
Helpful | Level 6
3 years ago
Solved

Moving Pics/Videos from Dropbox "Camera Uploads" to iCloud Photos

Overs the years I've used Dropbox to backup my pictures and videos. However I recently got a new iPhone, and I want to move all my photos/videos back onto my iPhone. From what I can tell, the best wa...
  • Ronni's avatar
    3 years ago

    Just in case anybody else have the same issue; I was able to avoid converting files all together and upload my photos via iCloud, and my newest .mov videos via the program FoneTool.

     

    I had to change the "Created" date of the files, to the same as "Modified" date, since iPhone uses the first mentioned to catalog videos. I was able to do so with a simple powershell-script:

     

    $files = Get-Item *

     

    foreach ($file in $files) {

    try {

    $time = Get-Item $file | select -ExpandProperty LastWriteTime
    (Get-Item $file).CreationTime=($time)
    Write-Output "$file - OK"

    }
    catch {

    Write-Output "$file - $($_.Exception.Message)"

    }

    }

     

    I'd be happy to hear from anybody with the same problem 🙂