http://www.cnblogs.com/pcdelphi/archive/2009/08/22/2018000.html
Delphi中的一个文件下载函数
function DownloadFile(Source, Dest: string): Boolean;
begin
try
Result := UrlDownloadToFile(nil, PChar(source), PChar(Dest), 0, nil) = 0;
except
Result := False;
end;
end;
procedure TForm1.btn2Click(Sender: TObject);
var
SourceFile,DestFile:string;
begin
SourceFile := 'http://www.baidu.com/';
DestFile := 'c:/12ab.htm';
DownloadFile(SourceFile, DestFile);
end;
分类: Delph
delphi lazarus opengl
网页操作自动化, 图像分析破解,游戏开发