Add docs for fs specific options - fixes #210
This commit is contained in:
parent
0b338eaa28
commit
13da1b8d28
4 changed files with 58 additions and 0 deletions
|
@ -104,6 +104,29 @@ By default rclone will delete files permanently when requested. If
|
||||||
sending them to the trash is required instead then use the
|
sending them to the trash is required instead then use the
|
||||||
`--drive-use-trash` flag.
|
`--drive-use-trash` flag.
|
||||||
|
|
||||||
|
### Specific options ###
|
||||||
|
|
||||||
|
Here are the command line options specific to this cloud storage
|
||||||
|
system.
|
||||||
|
|
||||||
|
#### --drive-chunk-size=SIZE ####
|
||||||
|
|
||||||
|
Upload chunk size. Must a power of 2 >= 256k. Default value is 256kB.
|
||||||
|
|
||||||
|
#### --drive-full-list ####
|
||||||
|
|
||||||
|
Use a full listing for directory list. More data but usually
|
||||||
|
quicker. On by default, disable with `--full-drive-list=false`.
|
||||||
|
|
||||||
|
#### --drive-upload-cutoff=SIZE ####
|
||||||
|
|
||||||
|
File size cutoff for switching to chunked upload. Default is 256kB.
|
||||||
|
|
||||||
|
#### --drive-use-trash ####
|
||||||
|
|
||||||
|
Send files to the trash instead of deleting permanently. Defaults to
|
||||||
|
off, namely deleting files permanently.
|
||||||
|
|
||||||
### Limitations ###
|
### Limitations ###
|
||||||
|
|
||||||
Drive has quite a lot of rate limiting. This causes rclone to be
|
Drive has quite a lot of rate limiting. This causes rclone to be
|
||||||
|
|
|
@ -76,6 +76,16 @@ To copy a local directory to a dropbox directory called backup
|
||||||
Dropbox doesn't have the capability of storing modification times or
|
Dropbox doesn't have the capability of storing modification times or
|
||||||
MD5SUMs so syncs will effectively have the `--size-only` flag set.
|
MD5SUMs so syncs will effectively have the `--size-only` flag set.
|
||||||
|
|
||||||
|
### Specific options ###
|
||||||
|
|
||||||
|
Here are the command line options specific to this cloud storage
|
||||||
|
system.
|
||||||
|
|
||||||
|
#### --dropbox-chunk-size=SIZE ####
|
||||||
|
|
||||||
|
Upload chunk size. Max 150M. The default is 128MB. Note that this
|
||||||
|
isn't buffered into memory.
|
||||||
|
|
||||||
### Limitations ###
|
### Limitations ###
|
||||||
|
|
||||||
Note that Dropbox is case insensitive so you can't have a file called
|
Note that Dropbox is case insensitive so you can't have a file called
|
||||||
|
|
|
@ -95,6 +95,21 @@ doesn't provide an API to permanently delete files, nor to empty the
|
||||||
trash, so you will have to do that with one of Microsoft's apps or via
|
trash, so you will have to do that with one of Microsoft's apps or via
|
||||||
the One Drive website.
|
the One Drive website.
|
||||||
|
|
||||||
|
### Specific options ###
|
||||||
|
|
||||||
|
Here are the command line options specific to this cloud storage
|
||||||
|
system.
|
||||||
|
|
||||||
|
#### --onedrive-chunk-size=SIZE ####
|
||||||
|
|
||||||
|
Above this size files will be chunked - must be multiple of 320k. The
|
||||||
|
default is 10MB. Note that the chunks will be buffered into memory.
|
||||||
|
|
||||||
|
#### --onedrive-upload-cutoff=SIZE ####
|
||||||
|
|
||||||
|
Cutoff for switching to chunked upload - must be <= 100MB. The default
|
||||||
|
is 10MB.
|
||||||
|
|
||||||
### Limitations ###
|
### Limitations ###
|
||||||
|
|
||||||
Note that One Drive is case insensitive so you can't have a
|
Note that One Drive is case insensitive so you can't have a
|
||||||
|
|
|
@ -87,6 +87,16 @@ excess files in the container.
|
||||||
|
|
||||||
rclone sync /home/local/directory remote:container
|
rclone sync /home/local/directory remote:container
|
||||||
|
|
||||||
|
### Specific options ###
|
||||||
|
|
||||||
|
Here are the command line options specific to this cloud storage
|
||||||
|
system.
|
||||||
|
|
||||||
|
#### --swift-chunk-size=SIZE ####
|
||||||
|
|
||||||
|
Above this size files will be chunked into a _segments container. The
|
||||||
|
default for this is 5GB which is its maximum value.
|
||||||
|
|
||||||
### Modified time ###
|
### Modified time ###
|
||||||
|
|
||||||
The modified time is stored as metadata on the object as
|
The modified time is stored as metadata on the object as
|
||||||
|
|
Loading…
Reference in a new issue