It has been discussed before that the JavaScript-based Dropbox saver by spec does not resolve with the path of the saved files. However, we have a use case that requires this (getting the path to a saved resource).
Now we could certainly hack together something among the following files:
- build a hopefully unique fingerprint of the file
- save the file to Dropbox, wait for it to complete
- harvest metadata for every single file on the user's Dropbox
- attempt to match which file was just uploaded
This certainly isn't bandwidth or privacy-friendly, and we sure don't want neither Dropbox nor our users to get suspicious about an activity log that this may create. Can you perhaps recommend an alternative approach to brute-forcing a file match?
Edit
I've been checking out http/documentation#files-search, which is a step forward to getting this done more efficiently.