Back to Adaptive Vision Library website

You are here: Start » Function Reference » FTP » Ftp_SendString

Ftp_SendString


Header:AVL.h
Namespace:avl

Sends a string to a remote serve using FTP (File Transfer Protocol).

Syntax

C++
C#
 
void avl::Ftp_SendString
(
	const atl::String& inText,
	const atl::String& inHostName,
	const atl::String& inDestinationFileName,
	atl::Optional<const atl::String&> inUsername,
	atl::Optional<const atl::String&> inPassword,
	bool inUsePassiveMode
)

Parameters

Name Type Default Description
inText const String& Text to send
inHostName const String& \"ftp://\" URL address of the remote server.
inDestinationFileName const String& Path where a text file should be saved on a remote server.
inUsername Optional<const String&> NIL User name needed to log in.
inPassword Optional<const String&> NIL Password associated with a user name.
inUsePassiveMode bool Protocol communication mode. May be necessary when using a firewall.

Errors

List of possible exceptions:

Error type Description
DomainError Empty destination file name on input in Ftp_SendString
DomainError Empty host name on input in Ftp_SendString