You are here: Start » AVL.NET » Function Reference » System » FTP » AVL.Ftp_SendFile

AVL.Ftp_SendFile

Sends a file to a remote server using FTP (File Transfer Protocol).

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void Ftp_SendFile
(
	string inFilePath,
	string inHostName,
	string inDestinationFileName,
	NullableRef<string> inUsername,
	NullableRef<string> inPassword,
	bool inUsePassiveMode
)

Parameters

Name Type Range Default Description
inFilePathstringPath to a file stored on the local drive.
inHostNamestring\"ftp://\"URL address of the remote server. Default value: "ftp://".
inDestinationFileNamestringPath where a file should be saved on a remote server.
inUsernameAvlNet.NullableRef<string>User name needed to log in. Default value: atl::NIL.
inPasswordAvlNet.NullableRef<string>Password associated with a user name. Default value: atl::NIL.
inUsePassiveModeboolProtocol 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_SendFile
DomainError Empty file path on input in Ftp_SendFile
DomainError Empty host name on input in Ftp_SendFile

Function Overrides

See also