TFtpClient.HostDirName

From Overbyte
Jump to navigation Jump to search

Main page -> ICS component reference -> TFtpClient -> HostDirName

Definition

property HostDirName: HostDirName;

Default Value

None

Description

This is value passed to the server when calling the functions Cwd and CwdAsync. The folder must exist on the server in order for the functions to succeed. With this you can change your current directory on the server.

Required by Cwd and CwdAsync.

Example

FtpClient1.HostName := 'ftp.simtel.net';
FtpClient1.Port := 'ftp';
FtpClient1.UserName := 'anonymous';
FtpClient1.Password := 'john.smith@mycomp.com';
FtpClient1.HostDirName := '/pub/simtelnet';
FtpClient1.OpenAsync;                            // Non-blocking open.

Best Practices

How To