mirror of
https://github.com/immich-app/immich.git
synced 2025-01-01 08:31:59 +00:00
docs(server): Fix glob pattern in library exclusions (#6752)
fix glob pattern in library exclusions
This commit is contained in:
parent
64da2c1698
commit
f6afb23d56
1 changed files with 3 additions and 3 deletions
|
@ -78,10 +78,10 @@ By default, all files in the import paths will be added to the library. If there
|
||||||
|
|
||||||
Some basic examples:
|
Some basic examples:
|
||||||
|
|
||||||
- `*.tif` will exclude all files with the extension `.tif`
|
- `**/*.tif` will exclude all files with the extension `.tif`
|
||||||
- `hidden.jpg` will exclude all files named `hidden.jpg`
|
- `**/hidden.jpg` will exclude all files named `hidden.jpg`
|
||||||
- `**/Raw/**` will exclude all files in any directory named `Raw`
|
- `**/Raw/**` will exclude all files in any directory named `Raw`
|
||||||
- `*.{tif,jpg}` will exclude all files with the extension `.tif` or `.jpg`
|
- `**/*.{tif,jpg}` will exclude all files with the extension `.tif` or `.jpg`
|
||||||
|
|
||||||
### Nightly job
|
### Nightly job
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue