2014-07-17 21:03:11 +02:00
|
|
|
|
---
|
|
|
|
|
title: "Dropbox"
|
|
|
|
|
description: "Rclone docs for Dropbox"
|
2016-02-21 14:52:00 +01:00
|
|
|
|
date: "2016-02-21"
|
2014-07-17 21:03:11 +02:00
|
|
|
|
---
|
|
|
|
|
|
2019-08-24 14:44:38 +02:00
|
|
|
|
<i class="fab fa-dropbox"></i> Dropbox
|
2014-07-17 21:03:11 +02:00
|
|
|
|
---------------------------------
|
|
|
|
|
|
|
|
|
|
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
|
2016-02-21 14:39:04 +01:00
|
|
|
|
Type of storage to configure.
|
|
|
|
|
Choose a number from below, or type in your own value
|
2019-08-26 11:47:17 +02:00
|
|
|
|
[snip]
|
|
|
|
|
XX / Dropbox
|
2016-02-21 14:39:04 +01:00
|
|
|
|
\ "dropbox"
|
2019-08-26 11:47:17 +02:00
|
|
|
|
[snip]
|
|
|
|
|
Storage> dropbox
|
2015-10-03 15:23:12 +02:00
|
|
|
|
Dropbox App Key - leave blank normally.
|
2017-01-09 06:09:19 +01:00
|
|
|
|
app_key>
|
2015-10-03 15:23:12 +02:00
|
|
|
|
Dropbox App Secret - leave blank normally.
|
2017-01-09 06:09:19 +01:00
|
|
|
|
app_secret>
|
2014-07-17 21:03:11 +02:00
|
|
|
|
Remote config
|
|
|
|
|
Please visit:
|
|
|
|
|
https://www.dropbox.com/1/oauth2/authorize?client_id=XXXXXXXXXXXXXXX&response_type=code
|
|
|
|
|
Enter the code: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX_XXXXXXXXXX
|
|
|
|
|
--------------------
|
|
|
|
|
[remote]
|
2017-01-09 06:09:19 +01:00
|
|
|
|
app_key =
|
|
|
|
|
app_secret =
|
2014-07-17 21:03:11 +02:00
|
|
|
|
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
|
|
|
|
|
|
2018-05-28 11:50:31 +02:00
|
|
|
|
### Dropbox for business ###
|
|
|
|
|
|
|
|
|
|
Rclone supports Dropbox for business and Team Folders.
|
|
|
|
|
|
|
|
|
|
When using Dropbox for business `remote:` and `remote:path/to/file`
|
|
|
|
|
will refer to your personal folder.
|
|
|
|
|
|
|
|
|
|
If you wish to see Team Folders you must use a leading `/` in the
|
|
|
|
|
path, so `rclone lsd remote:/` will refer to the root and show you all
|
|
|
|
|
Team Folders and your User Folder.
|
|
|
|
|
|
|
|
|
|
You can then use team folders like this `remote:/TeamFolder` and
|
|
|
|
|
`remote:/TeamFolder/path/to/file`.
|
|
|
|
|
|
|
|
|
|
A leading `/` for a Dropbox personal account will do nothing, but it
|
|
|
|
|
will take an extra HTTP transaction so it should be avoided.
|
|
|
|
|
|
2017-05-26 16:09:31 +02:00
|
|
|
|
### Modified time and Hashes ###
|
2014-07-17 21:03:11 +02:00
|
|
|
|
|
2017-05-21 22:35:33 +02:00
|
|
|
|
Dropbox supports modified times, but the only way to set a
|
|
|
|
|
modification time is to re-upload the file.
|
|
|
|
|
|
|
|
|
|
This means that if you uploaded your data with an older version of
|
|
|
|
|
rclone which didn't support the v2 API and modified times, rclone will
|
|
|
|
|
decide to upload all your old data to fix the modification times. If
|
|
|
|
|
you don't want this to happen use `--size-only` or `--checksum` flag
|
|
|
|
|
to stop it.
|
2015-05-18 21:07:49 +02:00
|
|
|
|
|
2017-05-26 16:09:31 +02:00
|
|
|
|
Dropbox supports [its own hash
|
|
|
|
|
type](https://www.dropbox.com/developers/reference/content-hash) which
|
|
|
|
|
is checked for all transfers.
|
|
|
|
|
|
2018-11-02 13:14:02 +01:00
|
|
|
|
#### Restricted filename characters
|
|
|
|
|
|
|
|
|
|
| Character | Value | Replacement |
|
|
|
|
|
| --------- |:-----:|:-----------:|
|
|
|
|
|
| NUL | 0x00 | ␀ |
|
|
|
|
|
| / | 0x2F | / |
|
|
|
|
|
| DEL | 0x7F | ␡ |
|
|
|
|
|
| \ | 0x5C | \ |
|
|
|
|
|
|
|
|
|
|
File names can also not end with the following characters.
|
|
|
|
|
These only get replaced if they are last character in the name:
|
|
|
|
|
|
|
|
|
|
| Character | Value | Replacement |
|
|
|
|
|
| --------- |:-----:|:-----------:|
|
|
|
|
|
| SP | 0x20 | ␠ |
|
|
|
|
|
|
|
|
|
|
Invalid UTF-8 bytes will also be [replaced](/overview/#invalid-utf8),
|
|
|
|
|
as they can't be used in JSON strings.
|
|
|
|
|
|
2018-10-01 21:48:54 +02:00
|
|
|
|
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/dropbox/dropbox.go then run make backenddocs -->
|
|
|
|
|
### Standard Options
|
|
|
|
|
|
|
|
|
|
Here are the standard options specific to dropbox (Dropbox).
|
|
|
|
|
|
|
|
|
|
#### --dropbox-client-id
|
|
|
|
|
|
|
|
|
|
Dropbox App Client Id
|
|
|
|
|
Leave blank normally.
|
|
|
|
|
|
|
|
|
|
- Config: client_id
|
|
|
|
|
- Env Var: RCLONE_DROPBOX_CLIENT_ID
|
|
|
|
|
- Type: string
|
|
|
|
|
- Default: ""
|
|
|
|
|
|
|
|
|
|
#### --dropbox-client-secret
|
|
|
|
|
|
|
|
|
|
Dropbox App Client Secret
|
|
|
|
|
Leave blank normally.
|
|
|
|
|
|
|
|
|
|
- Config: client_secret
|
|
|
|
|
- Env Var: RCLONE_DROPBOX_CLIENT_SECRET
|
|
|
|
|
- Type: string
|
|
|
|
|
- Default: ""
|
|
|
|
|
|
|
|
|
|
### Advanced Options
|
|
|
|
|
|
|
|
|
|
Here are the advanced options specific to dropbox (Dropbox).
|
|
|
|
|
|
|
|
|
|
#### --dropbox-chunk-size
|
|
|
|
|
|
|
|
|
|
Upload chunk size. (< 150M).
|
|
|
|
|
|
|
|
|
|
Any files larger than this will be uploaded in chunks of this size.
|
|
|
|
|
|
|
|
|
|
Note that chunks are buffered in memory (one at a time) so rclone can
|
|
|
|
|
deal with retries. Setting this larger will increase the speed
|
|
|
|
|
slightly (at most 10% for 128MB in tests) at the cost of using more
|
|
|
|
|
memory. It can be set smaller if you are tight on memory.
|
|
|
|
|
|
|
|
|
|
- Config: chunk_size
|
|
|
|
|
- Env Var: RCLONE_DROPBOX_CHUNK_SIZE
|
|
|
|
|
- Type: SizeSuffix
|
|
|
|
|
- Default: 48M
|
|
|
|
|
|
2018-11-24 14:44:25 +01:00
|
|
|
|
#### --dropbox-impersonate
|
|
|
|
|
|
|
|
|
|
Impersonate this user when using a business account.
|
|
|
|
|
|
|
|
|
|
- Config: impersonate
|
|
|
|
|
- Env Var: RCLONE_DROPBOX_IMPERSONATE
|
|
|
|
|
- Type: string
|
|
|
|
|
- Default: ""
|
|
|
|
|
|
2020-02-01 11:31:42 +01:00
|
|
|
|
#### --dropbox-encoding
|
|
|
|
|
|
|
|
|
|
This sets the encoding for the backend.
|
|
|
|
|
|
|
|
|
|
See: the [encoding section in the overview](/overview/#encoding) for more info.
|
|
|
|
|
|
|
|
|
|
- Config: encoding
|
|
|
|
|
- Env Var: RCLONE_DROPBOX_ENCODING
|
|
|
|
|
- Type: MultiEncoder
|
|
|
|
|
- Default: Slash,BackSlash,Del,RightSpace,InvalidUtf8,Dot
|
|
|
|
|
|
2018-10-01 21:48:54 +02:00
|
|
|
|
<!--- autogenerated options stop -->
|
2015-11-14 12:38:35 +01:00
|
|
|
|
|
2015-06-06 11:05:21 +02:00
|
|
|
|
### Limitations ###
|
2015-05-18 21:07:49 +02:00
|
|
|
|
|
2015-11-14 12:20:04 +01:00
|
|
|
|
Note that Dropbox is case insensitive so you can't have a file called
|
2015-07-30 21:26:29 +02:00
|
|
|
|
"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
|
2018-04-13 14:24:58 +02:00
|
|
|
|
attempts to upload one of those file names, but the sync won't fail.
|
2016-03-22 15:46:43 +01:00
|
|
|
|
|
|
|
|
|
If you have more than 10,000 files in a directory then `rclone purge
|
|
|
|
|
dropbox:dir` will return the error `Failed to purge: There are too
|
|
|
|
|
many files involved in this operation`. As a work-around do an
|
2017-04-24 17:38:49 +02:00
|
|
|
|
`rclone delete dropbox:dir` followed by an `rclone rmdir dropbox:dir`.
|
2019-10-28 17:49:16 +01:00
|
|
|
|
|
|
|
|
|
### Get your own Dropbox App ID ###
|
|
|
|
|
|
|
|
|
|
When you use rclone with Dropbox in its default configuration you are using rclone's App ID. This is shared between all the rclone users.
|
|
|
|
|
|
|
|
|
|
Here is how to create your own Dropbox App ID for rclone:
|
|
|
|
|
|
|
|
|
|
1. Log into the [Dropbox App console](https://www.dropbox.com/developers/apps/create) with your Dropbox Account (It need not
|
|
|
|
|
to be the same account as the Dropbox you want to access)
|
|
|
|
|
|
|
|
|
|
2. Choose an API => Usually this should be `Dropbox API`
|
|
|
|
|
|
|
|
|
|
3. Choose the type of access you want to use => Full Dropbox or App Folder
|
|
|
|
|
|
|
|
|
|
4. Name your App
|
|
|
|
|
|
|
|
|
|
5. Click the button `Create App`
|
|
|
|
|
|
|
|
|
|
6. Find the `App key` and `App secret` Use these values in rclone config to add a new remote or edit an existing remote.
|