type
TScFTPAfterUploadFileEvent = procedure(Sender: TObject; Source: TStream; const DestFile: string; StartPos: Int64) of object;
property AfterUploadFile: TScFTPAfterUploadFileEvent;
Description
Occurs after a file was uploaded from the local machine to the FTP server.
Parameters:
| • | Sender - the object that raised the event; |
| • | Source - holds the source data stream that was being copied; |
| • | DestFile - holds the destination path where the file was copied; |
| • | StartPos - the offset in bytes relative to the beginning of the file that the uploading started at. |
See Also