Hi,
Zitat von
Indy-Doku:
procedure Get(const ASourceFile: string; ADest: TStream; AResume: Boolean); overload;
[...]Get allows continuing a previous partial download or appending data to an existing file on the local file system when AResume is True and CanResume indicates that the
FTP server implementation allows the
FTP REST command verb.[...]
Wobei besagtes "CanResume" eine Eigenschaft von IdFTP ist, über die die Komponente anzeigt ob der Server das Fortsetzen unterstützt.
Also so wie ich das sehe musst du nur den Dateinamen auf deinem Rechner wissen und das Get mit Aresume=true aufrufen.
Bis dann,
S - tefano
[Edit]
Wenn du keine Streams magst kannst du auch diese Implementierung verwenden:
procedure Get(const ASourceFile: string; const ADestFile: string; const ACanOverwrite: boolean; AResume: Boolean); overload;
[/Edit]