Updated Filer Server API (markdown)

Chris Lu 2020-12-26 15:04:14 -08:00
parent d40e392bfb
commit aff40e99df

@ -176,7 +176,15 @@ curl -H "Accept: application/json" "http://localhost:8888/javascript/?pretty=y&l
| ---- | -- | -- |
| limit | how many file to show | 100 |
| lastFileName | the last file in previous batch | empty |
| namePattern | match file names by pattern, supporting case-insensitive wildcard characters '*' and '?' | empty |
## Supported Name Pattern
| Pattern | Matches |
| ---- | -- |
| * | any file name |
| *.jpg | abc.jpg, ABC.JPG |
| *.jp*g | abc.jpg, ABC.JPG, abc.jpeg, abc.JPEG |
| *.jp?g | abc.jpeg, abc.JPEG |
# Deletion