2014-07-17 21:03:11 +02:00
|
|
|
---
|
|
|
|
title: "Dropbox"
|
|
|
|
description: "Rclone docs for Dropbox"
|
|
|
|
date: "2014-07-17"
|
|
|
|
---
|
|
|
|
|
|
|
|
<i class="fa fa-dropbox"></i> Dropbox
|
|
|
|
---------------------------------
|
|
|
|
|
|
|
|
Paths are specified as `remote:path`
|
|
|
|
|
|
|
|
Dropbox paths may be as deep as required, eg
|
|
|
|
`remote:directory/subdirectory`.
|
|
|
|
|
|
|
|
The initial setup for dropbox involves getting a token from Dropbox
|
|
|
|
which you need to do in your browser. `rclone config` walks you
|
|
|
|
through it.
|
|
|
|
|
|
|
|
Here is an example of how to make a remote called `remote`. First run:
|
|
|
|
|
|
|
|
rclone config
|
|
|
|
|
|
|
|
This will guide you through an interactive setup process:
|
|
|
|
|
|
|
|
```
|
|
|
|
n) New remote
|
|
|
|
d) Delete remote
|
|
|
|
q) Quit config
|
|
|
|
e/n/d/q> n
|
|
|
|
name> remote
|
|
|
|
What type of source is it?
|
|
|
|
Choose a number from below
|
|
|
|
1) swift
|
|
|
|
2) s3
|
|
|
|
3) local
|
|
|
|
4) google cloud storage
|
|
|
|
5) dropbox
|
|
|
|
6) drive
|
|
|
|
type> 5
|
|
|
|
Dropbox App Key - leave blank to use rclone's.
|
|
|
|
app_key>
|
|
|
|
Dropbox App Secret - leave blank to use rclone's.
|
|
|
|
app_secret>
|
|
|
|
Remote config
|
|
|
|
Please visit:
|
|
|
|
https://www.dropbox.com/1/oauth2/authorize?client_id=XXXXXXXXXXXXXXX&response_type=code
|
|
|
|
Enter the code: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX_XXXXXXXXXX
|
|
|
|
--------------------
|
|
|
|
[remote]
|
|
|
|
app_key =
|
|
|
|
app_secret =
|
|
|
|
token = XXXXXXXXXXXXXXXXXXXXXXXXXXXXX_XXXX_XXXXXXXXXXXXXXXXXXXXXXXXXXXXX
|
|
|
|
--------------------
|
|
|
|
y) Yes this is OK
|
|
|
|
e) Edit this remote
|
|
|
|
d) Delete this remote
|
|
|
|
y/e/d> y
|
|
|
|
```
|
|
|
|
|
|
|
|
You can then use it like this,
|
|
|
|
|
|
|
|
List directories in top level of your dropbox
|
|
|
|
|
|
|
|
rclone lsd remote:
|
|
|
|
|
|
|
|
List all the files in your dropbox
|
|
|
|
|
|
|
|
rclone ls remote:
|
|
|
|
|
|
|
|
To copy a local directory to a dropbox directory called backup
|
|
|
|
|
|
|
|
rclone copy /home/source remote:backup
|
|
|
|
|
2015-08-17 00:24:34 +02:00
|
|
|
### Modified time and MD5SUMs ###
|
2014-07-17 21:03:11 +02:00
|
|
|
|
2015-08-17 00:24:34 +02:00
|
|
|
Dropbox doesn't have the capability of storing modification times or
|
|
|
|
MD5SUMs so syncs will effectively have the `--size-only` flag set.
|
2015-05-18 21:07:49 +02:00
|
|
|
|
2015-06-06 11:05:21 +02:00
|
|
|
### Limitations ###
|
2015-05-18 21:07:49 +02:00
|
|
|
|
2015-07-30 21:26:29 +02:00
|
|
|
Note that Dropbox is case sensitive so you can't have a file called
|
|
|
|
"Hello.doc" and one called "hello.doc".
|
2015-08-20 19:36:06 +02:00
|
|
|
|
|
|
|
There are some file names such as `thumbs.db` which Dropbox can't
|
|
|
|
store. There is a full list of them in the ["Ignored Files" section
|
|
|
|
of this document](https://www.dropbox.com/en/help/145). Rclone will
|
|
|
|
issue an error message `File name disallowed - not uploading` if it
|
|
|
|
attempt to upload one of those file names, but the sync won't fail.
|