Components | All | New | MacOS | Windows | Linux | iOS | ||||
Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old |
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
- CURL.SetInputText
- CURL.SetOptionBufferSize
- CURL.SetOptionCookieFile
- CURL.SetOptionFileTime
- CURL.SetOptionMaxFileSize
- CURL.SetOptionPostFieldSize
Blog Entries
Created 18th August 2014, last changed 8th December 2016