Topics   All   MacOS (Only)   Windows (Only)   Linux (Only, Not)   iOS (Only, Not)  
Components   Crossplatform Mac & Win   Server   Client   Old   Deprecated   Guides   Examples   Videos
New in version: 10.1   10.2   10.3   10.4   10.5   11.0   11.1   11.2   11.3   11.4    Statistic    FMM    Blog  

CURL.SetOptionInFileSize

Sets the file input size.

Component Version macOS Windows Linux Server iOS SDK
CURL 2.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes ✅ Yes
MBS( "CURL.SetOptionInFileSize"; curl; Value )   More

(old name: CURL.SetOptionInFileLarge)

Parameters

Parameter Description Example
curl The CURL session handle. $curl
Value The input size. 1234

Result

Returns "OK" on success.

Description

Sets the file input size.
When uploading a file to a remote site, this option should be used to tell libcurl what the expected size of the infile is. This value should be passed as a long. See also CURL.SetOptionInFileLarge.

For uploading using SCP, this option is mandatory.

When sending emails using SMTP, this command can be used to specify the optional SIZE parameter for the MAIL FROM command.
This option does not limit how much data libcurl will actually send, as that is controlled entirely by what the input data.
Our CURL.SetInputText and other input functions also set the file size.

See also INFILESIZE option in CURL manual.

Examples

Sets size of input:

MBS( "CURL.SetOptionInFileSize"; $curl; $size )

See also

Blog Entries

Created 18th August 2014, last changed 8th December 2016


CURL.SetOptionIgnoreContentLength - CURL.SetOptionInterface

Feedback: Report problem or ask question.