Einzelnen Beitrag anzeigen

Benutzerbild von S - tefano
S - tefano

Registriert seit: 16. Dez 2002
Ort: Dülmen
477 Beiträge
 
Delphi 2009 Professional
 
#6

Re: Mit Indy FTP Downloads fortsetzen

  Alt 3. Sep 2004, 23:02
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]
"Sir, we are surrounded!" - "Excellent, we can attack in every direction!"
  Mit Zitat antworten Zitat