forked from TrueCloudLab/rclone
Clarify filtering docs #489
This commit is contained in:
parent
36700d36a7
commit
cadf202107
1 changed files with 5 additions and 0 deletions
|
@ -82,6 +82,11 @@ Special characters can be escaped with a `\` before them.
|
||||||
\\.jpg - matches "\.jpg"
|
\\.jpg - matches "\.jpg"
|
||||||
\[one\].jpg - matches "[one].jpg"
|
\[one\].jpg - matches "[one].jpg"
|
||||||
|
|
||||||
|
Note also that rclone filter globs can only be used in one of the
|
||||||
|
filter command line flags, not in the specification of the remote, so
|
||||||
|
`rclone copy "remote:dir*.jpg" /path/to/dir` won't work - what is
|
||||||
|
required is `rclone --include "*.jpg" copy remote:dir /path/to/dir`
|
||||||
|
|
||||||
### Directories ###
|
### Directories ###
|
||||||
|
|
||||||
Rclone keeps track of directories that could match any file patterns.
|
Rclone keeps track of directories that could match any file patterns.
|
||||||
|
|
Loading…
Add table
Reference in a new issue