Back to Adaptive Vision Library website

You are here: Start » Function Reference » System » FTP » Ftp_ReceiveFile

Ftp_ReceiveFile


Header: AVL.h
Namespace: avl
Module: FoundationBasic

Downloads a file from a remote server using FTP (File Transfer Protocol).

Syntax

C++
C#
 
void avl::Ftp_ReceiveFile
(
	const atl::File& inFilePath,
	const atl::String& inHostName,
	const atl::String& inFtpFilePath,
	atl::Optional<const atl::String&> inUsername,
	atl::Optional<const atl::String&> inPassword,
	bool inUsePassiveMode
)

Parameters

Name Type Default Description
inFilePath const File& Location of the file on a remote server
inHostName const String& \"ftp://\" URL address of the remote server.
inFtpFilePath const String& Location of the file 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 ftp file path on input in Ftp_ReceiveFile
DomainError Empty host name on input in Ftp_ReceiveFile
DomainError Empty path on input in Ftp_ReceiveFile