ftp_putData

Uploads FTP data.

Target function

Signature

1ftp_putData(url::string, ...)

Uploads FTP data.

ftp_putData is a global callable that can be used wherever an expression is valid. ftp_putData performs network or protocol work. Make timeouts, encodings, and authentication settings visible in calling code so failures are easier to diagnose.

Parameters

url
Required value of type string. Supply url positionally unless the signature shows a keyword form.
...
Additional values may be supplied after the earlier arguments.

Examples

Basic call

1ftp_putData('ftp://example.com/file.txt', -data=bytes('hello'))
The example shows the normal call shape. Adapt variable names, validation, and surrounding error handling to the context.