mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 09:32:29 +08:00
docs: correct description of encoding None and add Raw.
This commit is contained in:
parent
1b9217bc78
commit
e041796bfe
|
@ -348,8 +348,8 @@ have a Windows file system with Unicode fullwidth characters
|
|||
remote rather than being translated to regular (halfwidth) `*`, `?` and `:`.
|
||||
|
||||
The `--backend-encoding` flags allow you to change that. You can
|
||||
disable the encoding completely with `--backend-encoding None` or set
|
||||
`encoding = None` in the config file.
|
||||
disable the encoding completely with `--backend-encoding Raw` or set
|
||||
`encoding = Raw` in the config file.
|
||||
|
||||
Encoding takes a comma separated list of encodings. You can see the
|
||||
list of all possible values by passing an invalid value to this
|
||||
|
@ -375,7 +375,7 @@ will show you the defaults for the backends.
|
|||
| LeftSpace | SPACE on the left of a string | `␠` |
|
||||
| LeftTilde | `~` on the left of a string | `~` |
|
||||
| LtGt | `<`, `>` | `<`, `>` |
|
||||
| None | No characters are encoded | |
|
||||
| None ¹ | NUL 0x00 | ␀ |
|
||||
| Percent | `%` | `%` |
|
||||
| Pipe | \| | `|` |
|
||||
| Question | `?` | `?` |
|
||||
|
@ -387,6 +387,10 @@ will show you the defaults for the backends.
|
|||
| Slash | `/` | `/` |
|
||||
| SquareBracket | `[`, `]` | `[`, `]` |
|
||||
|
||||
¹ Encoding from NUL 0x00 to ␀ is always implicit except when using Raw.
|
||||
It was previously incorrectly documented as disabling encoding,
|
||||
and to maintain backward compatibility, its behavior has not been changed.
|
||||
|
||||
##### Encoding example: FTP
|
||||
|
||||
To take a specific example, the FTP backend's default encoding is
|
||||
|
@ -430,7 +434,7 @@ the default value but without `Colon,Question,Asterisk`:
|
|||
--local-encoding "Slash,LtGt,DoubleQuote,Pipe,BackSlash,Ctl,RightSpace,RightPeriod,InvalidUtf8,Dot"
|
||||
```
|
||||
|
||||
Alternatively, you can disable the conversion of any characters with `--local-encoding None`.
|
||||
Alternatively, you can disable the conversion of any characters with `--local-encoding Raw`.
|
||||
|
||||
Instead of using command-line argument `--local-encoding`, you may also set it
|
||||
as [environment variable](/docs/#environment-variables) `RCLONE_LOCAL_ENCODING`,
|
||||
|
|
Loading…
Reference in New Issue
Block a user