You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.

Forum Discussion

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

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 🙂