TFtpClient.HostDirName
Jump to navigation
Jump to search
Main page -> ICS component reference -> TFtpClient -> HostDirName
Definition
property HostDirName: HostDirName;
Default Value
None
Description
This value passed to the server when calling functions Cwd and CwdAsync. The folder must exist on the server in order for the functions to succeed.
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.