Frequently Asked Component Specific Questions

Options

Display all FAQ items

Search FAQ items:


Displaying items 1 to 1 of 1, page 1 of 1

<< previous next >>

TWebCopy
HTTP:

Files to copy over the web can be easily set at design time using a Items collection or programmatically :
with WebCopy.Items.Add do
begin
  URL := 'https://www.tmssoftware.com/webcopy.zip';
  Protocol := wpHTTP;
  FileDate := EncodeDate(2002,3,18);
  CopyNewerOnly := true;
  TargetDir := 'c:\temp';
end;
WebCopy.Execute;