Hi @gmreeg62610,
How far did it get? It is possible it started hitting exceptions that caused it to abort. This was discussed a bit in this thread here, which I think parallels what you may be hitting: Big Folder not syncing - The file doesn't exist
I think you are using OS X, so we can apply a similar tactic and use the CLI to essentially “download until done” using this command:
exec 6>&1;num_procs=4;output="go"; while [ "$output" ]; do output=$(find "$HOME/odrive/Dropbox" -name "*.cloud*" -print0 | xargs -0 -n 1 -P $num_procs python $(ls -d "$HOME/.odrive/bin/"*/ | tail -1)odrive.py sync | tee /dev/fd/6); done
Yes, it is an ugly one-liner, but the above command will download everything in the odrive Dropbox folder using 4 concurrent workers. It won’t stop until everything has been downloaded.
To use the command, open a terminal session and copy and paste the full command in, changing “$HOME/odrive/Dropbox” to the folder you are wanting to sync down.
Please let me know if you have any questions. If you happen to be running Windows instead of OS X, you can grab the script in the forum post I referenced above.