We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.
Forum Discussion
Nuno G.2
8 years agoNew member | Level 2
Update files (images) and keep creation date
Hi,
I'm using the upload api to send some images to my Dropbox account. What I'm noticing is that the images' creation dates are being set to the upload date. So if I took a picture yesterday on my iPhone, and today sending it on my app, through the Dropbox API, the creation date is "now". That's rather unfortunate. The Camera Upload folder keeps the creation date on the files though, so I would like to know if that's possible.
Being a bit more technical, I'll post some code. I'm using Swift 3 and iOS 10.
I'm actually fetching the Image Data through:
PHAsset.fetchAssets(withALAssetURLs: [imageLocalUrl], options: nil) PHImageManager.default()
.requestImageData(for: asset,
options: requestOptions) { resultData, response, orientation, info in data = resultData }
Then using the Dropbox upload api like this:
DropboxClientsManager
.authorizedClient
.files
.upload(path: "<path/to/folder/imageName.jpg>", input: data)
Thank you
I see, thanks for clarifying. In that case, in order to preserve that when uploading via the API, set the clientModified to be the expected time when calling upload.
- Greg-DBDropbox StaffWhat piece of metadata are you looking at specifically when you refer to the file's creation date? Can you share a sample? Thanks in advance!
- Nuno G.2New member | Level 2
Not sure. I was actually thinking this would be automatically.
In Finder (macOS) I'm actually seeing this on an image that I just uploaded but the picture itself was taken well before.
https://www.dropbox.com/s/i8v58nrq1igjj0b/Screenshot%202016-12-13%2021.46.04.png?dl=0
The Camera Upload folder keeps the dates propperly according to the photo creation date.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,877 PostsLatest Activity: 16 minutes agoIf you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!