Internet Direct (Indy) Version 9.0.2 Beta
EIdFTPFileAlreadyExists
Exception raised a file cannot be overwritten in an FTP Get request.

EIdFTPFileAlreadyExists = class(EIdException)
Description
This exception is raised if the TIdFTP.Get method is not permitted to overwrite a file and the file you specified in the destination already exists on the user's computer. Usually, you can trap this exception in your code or if you intended to overwrite a file on the user's computer, you can use code such as:

    FTP1.Get('ASampleFile.TXT','ASampleFile.TXT',True);