Sortix 1.1dev ports manual
This manual documents Sortix 1.1dev ports. You can instead view this document in the latest official manual.
CURLOPT_WILDCARDMATCH(3) | curl_easy_setopt options | CURLOPT_WILDCARDMATCH(3) |
NAME
CURLOPT_WILDCARDMATCH - enable directory wildcard transfersSYNOPSIS
#include <curl/curl.h>DESCRIPTION
Set onoff to 1 if you want to transfer multiple files according to a file name pattern. The pattern can be specified as part of the CURLOPT_URL(3) option, using an fnmatch-like pattern (Shell Pattern Matching) in the last part of URL (file name).- * - ASTERISK
- ftp://example.com/some/path/*.txt (for all txt's from the root directory). Only two asterisks are allowed within the same pattern string.
- ? - QUESTION MARK
- Question mark matches any (exactly one) character.
- [ - BRACKET EXPRESSION
- The left bracket opens a bracket expression. The question
mark and asterisk have no special meaning in a bracket expression. Each
bracket expression ends by the right bracket and matches exactly one
character. Some examples follow:
PROTOCOLS
This feature is only supported for FTP download.EXAMPLE
See https://curl.haxx.se/libcurl/c/ftp-wildcard.htmlAVAILABILITY
Added in 7.21.0RETURN VALUE
Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not.SEE ALSO
CURLOPT_FNMATCH_FUNCTION(3), CURLOPT_URL(3),May 18, 2018 | libcurl 7.69.0 |