Sortix main manual
This manual documents Sortix main. You can instead view this document in the latest official manual.
curl_mime_filedata(3) | libcurl Manual | curl_mime_filedata(3) |
NAME
curl_mime_filedata - set a mime part's body data from a file contentsSYNOPSIS
#include <curl/curl.h>
CURLcode curl_mime_filedata(curl_mimepart *part,
const char *filename);
DESCRIPTION
curl_mime_filedata(3) sets a mime part's body content from the named file's contents. This is an alternative to curl_mime_data(3) for setting data to a mime part.EXAMPLE
curl_mime *mime;
curl_mimepart *part;
/* create a mime handle */
mime = curl_mime_init(easy);
/* add a part */
part = curl_mime_addpart(mime);
/* send data from this file */
curl_mime_filedata(part, "image.png");
/* set name */
curl_mime_name(part, "data");
AVAILABILITY
As long as at least one of HTTP, SMTP or IMAP is enabled. Added in 7.56.0.RETURN VALUE
CURLE_OK or a CURL error code upon failure. CURLE_READ_ERROR is only an indication that the file is not yet readable: it can be safely ignored at this time, but the file must be made readable before the pertaining easy handle is performed.SEE ALSO
curl_mime_addpart(3), curl_mime_data(3), curl_mime_filename(3), curl_mime_name(3)May 17, 2022 | libcurl 7.84.0 |