TFtpClient.Binary

From Overbyte
Revision as of 22:09, 10 September 2006 by Kbrad1 (talk | contribs) (→‎Definition)
Jump to navigation Jump to search

Definition

property Binary: Boolean;

Default Value

True

Description

Property used to set whether files are transferred in either binary or ASCII mode. Binary has no effect until TypeSet or TypeSetAsync have been successfully called.

TypeSetBinary, TypeSetBinaryAsync, TypeSetAscii, and TypeAsciiAsync can perform these steps in one call.

Example

FtpClient1.Binary := True;
if (FtpClient1.TypeSet) then
  Application.MessageBox('Transfer mode set to Binary', 'FTP', MB_OK);

Best Practices

How To