Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
When I move an "Online only" file into a "Local" folder, the file stays "Online Only", and the folder changes to a "mixed" state. Is there a way with Smart Sync to force anything I move from an "online only" folder to a "Local" folder to changes the state of the file to local?
We're looking for an automated way, via the command line, an applescript, whatever- that forces files to download to a "local" state when a script runs that moves online only files into a local "to do" folder.
+1 I would also like this!
Yes, I'd appreciate this too. It's a little ridiculous that something simple like this has been asked for rather persistently for the last year or so, and still, nothing definitive has happened. I'm a software developer as well, so if I can offer any help in this, I'd be happy to...but let's start putting actions to words. 🙂
Thanks for the additional feedback!
+1, please. It would be useful.
+1
We're trying to use this as well. We have some IT setup scripts that need to be accessible via dropbox and are accessed via the system profile in an automated fashion. Since the user owns the dropbox files, the system account doesn't force them to smart sync. Having a way to force a local sync of just one folder would be very useful to us.
@campmdabt I wanted to do the same thing and was sadly out of luck.
Of course you can cat a file to ensure Dropbox syncs it but that's a bit slow for a large directory. My solution was to read the first 10 bytes of every file in a folder recursively and in parallel. This triggers Dropbox to sync the files somewhat efficiently and without forcing you to read the contents of all the files. Here's the shell-fu to do it:
fd -0 -t file /path/to/sync | gparallel -j 30 -0 'dd if="{}" bs=10 count=1 > /dev/null '
That runs `dd` in 30 parallel threads. Requires the `fd` find alternative and GNU Parallel. But easy to make work with the standard `find` and `parallel` tools as well. Cheers.
+1
+1
++1
+1 This would be so helpful!
Hi there!
If you need more help you can view your support options (expected response time for a 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!