type
TScFTPAfterDownloadFileEvent = procedure(Sender: TObject; const SourceFile: string; Dest: TStream; StartPos: Int64) of object;
property AfterDownloadFile: TScFTPAfterDownloadFileEvent;
Description
Occurs after a file was downloaded from the FTP server to the local machine.
Parameters:
• | Sender - the object that raised the event; |
• | SourceFile - holds the initial path to the file that was being copied; |
• | Dest - holds the destination data stream where the file was copied; |
• | StartPos - the offset in bytes relative to the beginning of the downloaded file. |
See Also