CURLOPT_WILDCARDMATCH(3) | curl_easy_setopt options | CURLOPT_WILDCARDMATCH(3) |
CURLOPT_WILDCARDMATCH - enable directory wildcard transfers
#include <curl/curl.h>
CURLcode curl_easy_setopt(CURL *handle, CURLOPT_WILDCARDMATCH, long onoff);
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).
By default, libcurl uses its internal wildcard matching implementation. You can provide your own matching function by the CURLOPT_FNMATCH_FUNCTION(3) option.
A brief introduction of its syntax follows:
ftp://example.com/some/path/photo?.jpeg
[a-zA-Z0-9] or [f-gF-G] - character interval
[abc] - character enumeration
[^abc] or [!abc] - negation
[[:name:]] class expression. Supported classes are alnum,lower, space, alpha, digit, print, upper, blank, graph, xdigit.
[][-!^] - special case - matches only '-', ']', '[', '!' or '^'. These characters have no special purpose.
[\[\]\\] - escape syntax. Matches '[', ']' or '\'.
Using the rules above, a file name pattern can be constructed:
ftp://example.com/some/path/[a-z[:upper:]\\].jpeg
This feature is only supported for FTP download.
See https://curl.se/libcurl/c/ftp-wildcard.html
Added in 7.21.0
Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not.
November 4, 2020 | libcurl 7.74.0 |